diff --git a/gis_data_editor.php b/gis_data_editor.php index 9eb0e99744..ab1dc6687d 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -28,9 +28,13 @@ if (! isset($gis_data['gis_type'])) { } if (isset($_REQUEST['value']) && trim($_REQUEST['value']) != '') { $start = (substr($_REQUEST['value'], 0, 1) == "'") ? 1 : 0; - $gis_data['gis_type'] = substr($_REQUEST['value'], $start, strpos($_REQUEST['value'], "(") - $start); + $gis_data['gis_type'] = substr( + $_REQUEST['value'], $start, strpos($_REQUEST['value'], "(") - $start + ); } - if ((! isset($gis_data['gis_type'])) || (! in_array($gis_data['gis_type'], $gis_types))) { + if ((! isset($gis_data['gis_type'])) + || (! in_array($gis_data['gis_type'], $gis_types)) + ) { $gis_data['gis_type'] = $gis_types[0]; } } @@ -39,20 +43,30 @@ $geom_type = $gis_data['gis_type']; // Generate parameters from value passed. $gis_obj = PMA_GIS_Factory::factory($geom_type); if (isset($_REQUEST['value'])) { - $gis_data = array_merge($gis_data, $gis_obj->generateParams($_REQUEST['value'])); + $gis_data = array_merge( + $gis_data, $gis_obj->generateParams($_REQUEST['value']) + ); } // Generate Well Known Text -$srid = (isset($gis_data['srid']) && $gis_data['srid'] != '') ? htmlspecialchars($gis_data['srid']) : 0; +$srid = (isset($gis_data['srid']) && $gis_data['srid'] != '') + ? htmlspecialchars($gis_data['srid']) : 0; $wkt = $gis_obj->generateWkt($gis_data, 0); $wkt_with_zero = $gis_obj->generateWkt($gis_data, 0, '0'); $result = "'" . $wkt . "'," . $srid; // Generate PNG or SVG based visualization -$format = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) ? 'png' : 'svg'; -$visualizationSettings = array('width' => 450, 'height' => 300, 'spatialColumn' => 'wkt'); +$format = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) + ? 'png' : 'svg'; +$visualizationSettings = array( + 'width' => 450, + 'height' => 300, + 'spatialColumn' => 'wkt' +); $data = array(array('wkt' => $wkt_with_zero, 'srid' => $srid)); -$visualization = PMA_GIS_visualizationResults($data, $visualizationSettings, $format); +$visualization = PMA_GIS_visualizationResults( + $data, $visualizationSettings, $format +); $open_layers = PMA_GIS_visualizationResults($data, $visualizationSettings, 'ol'); // If the call is to update the WKT and visualization make an AJAX response @@ -72,34 +86,43 @@ ob_start();
-

- -'); - // The input field to which the final result should be added and corresponding null checkbox - if (isset($_REQUEST['input_name'])) { - echo(''); - } - echo PMA_generate_common_hidden_inputs(); +

+'; +echo ''; +// The input field to which the final result should be added +// and corresponding null checkbox +if (isset($_REQUEST['input_name'])) { + echo ''; +} +echo PMA_generate_common_hidden_inputs(); ?>
-' . $visualization; ?>
/>
@@ -112,13 +135,13 @@ ob_start();
@@ -128,185 +151,213 @@ ob_start();
-'); +'; +} +for ($a = 0; $a < $geom_count; $a++) { + if ($geom_type == 'GEOMETRYCOLLECTION') { + echo('

'); echo __("Geometry"); echo($a + 1 . ':
'); + if (isset($gis_data[$a]['gis_type'])) { + $type = $gis_data[$a]['gis_type']; + } else { + $type = $gis_types[0]; } - for ($a = 0; $a < $geom_count; $a++) { - if ($geom_type == 'GEOMETRYCOLLECTION') { - echo('

'); echo __("Geometry"); echo($a + 1 . ':
'); - if (isset($gis_data[$a]['gis_type'])) { - $type = $gis_data[$a]['gis_type']; - } else { - $type = $gis_types[0]; - } - echo(''); - } else { - $type = $geom_type; + echo(''); + } else { + $type = $geom_type; + } - if ($type == 'POINT') { - echo('
'); echo __("Point"); echo(' :'); + if ($type == 'POINT') { + echo('
'); echo __("Point"); echo(' :'); ?> '); - if (isset($gis_data[$a][$type]['add_point'])) { - $no_of_points++; - } - echo(''); - - for ($i = 0; $i < $no_of_points; $i++) { - echo('
'); - printf(__('Point %d'), $i + 1); - echo ':'; + for ($i = 0; $i < $no_of_points; $i++) { + echo '
'; + printf(__('Point %d'), $i + 1); + echo ':'; ?> "> '; - $no_of_lines = isset($gis_data[$a][$type]['no_of_lines']) ? $gis_data[$a][$type]['no_of_lines'] : 1; - if ($no_of_lines < 1) { - $no_of_lines = 1; + for ($i = 0; $i < $no_of_lines; $i++) { + echo '
'; + if ($type == 'MULTILINESTRING') { + echo __("Linestring"); echo ($i + 1) . ':'; + } else { + if ($i == 0) { + echo __("Outer Ring") . ':'; + } else { + echo __("Inner Ring"); echo $i . ':'; } - if (isset($gis_data[$a][$type]['add_line'])) { - $no_of_lines++; - } - echo(''); + } - for ($i = 0; $i < $no_of_lines; $i++) { - echo('
'); - if ($type == 'MULTILINESTRING') { - echo __("Linestring"); echo($i + 1 . ':'); - } else { - if ($i == 0) { - echo __("Outer Ring") . ':'; - } else { - echo __("Inner Ring"); echo($i . ':'); - } - } + $no_of_points = isset($gis_data[$a][$type][$i]['no_of_points']) + ? $gis_data[$a][$type][$i]['no_of_points'] : 2; + if ($type == 'MULTILINESTRING' && $no_of_points < 2) { + $no_of_points = 2; + } + if ($type == 'POLYGON' && $no_of_points < 4) { + $no_of_points = 4; + } + if (isset($gis_data[$a][$type][$i]['add_point'])) { + $no_of_points++; + } + echo ''; - $no_of_points = isset($gis_data[$a][$type][$i]['no_of_points']) ? $gis_data[$a][$type][$i]['no_of_points'] : 2; - if ($type == 'MULTILINESTRING' && $no_of_points < 2) { - $no_of_points = 2; - } - if ($type == 'POLYGON' && $no_of_points < 4) { - $no_of_points = 4; - } - if (isset($gis_data[$a][$type][$i]['add_point'])) { - $no_of_points++; - } - echo(''); - - for ($j = 0; $j < $no_of_points; $j++) { - echo('
'); - printf(__('Point %d'), $j + 1); - echo ':'; + for ($j = 0; $j < $no_of_points; $j++) { + echo('
'); + printf(__('Point %d'), $j + 1); + echo ':'; ?> - "> -
'); + + for ($k = 0; $k < $no_of_polygons; $k++) { + echo('
'); echo __("Polygon"); echo($k + 1 . ':'); + $no_of_lines = isset($gis_data[$a][$type][$k]['no_of_lines']) + ? $gis_data[$a][$type][$k]['no_of_lines'] : 1; + if ($no_of_lines < 1) { + $no_of_lines = 1; + } + if (isset($gis_data[$a][$type][$k]['add_line'])) { + $no_of_lines++; + } + echo(''); + + for ($i = 0; $i < $no_of_lines; $i++) { + echo('

'); + if ($i == 0) { + echo __("Outer Ring") . ':'; + } else { + echo __("Inner Ring"); echo($i . ':'); } - if (isset($gis_data[$a][$type]['add_polygon'])) { - $no_of_polygons++; + + $no_of_points = isset($gis_data[$a][$type][$k][$i]['no_of_points']) + ? $gis_data[$a][$type][$k][$i]['no_of_points'] : 4; + if ($no_of_points < 4) { + $no_of_points = 4; } - echo(''); + if (isset($gis_data[$a][$type][$k][$i]['add_point'])) { + $no_of_points++; + } + echo(''); - for ($k = 0; $k < $no_of_polygons; $k++) { - echo('
'); echo __("Polygon"); echo($k + 1 . ':'); - $no_of_lines = isset($gis_data[$a][$type][$k]['no_of_lines']) ? $gis_data[$a][$type][$k]['no_of_lines'] : 1; - if ($no_of_lines < 1) { - $no_of_lines = 1; - } - if (isset($gis_data[$a][$type][$k]['add_line'])) { - $no_of_lines++; - } - echo(''); - - for ($i = 0; $i < $no_of_lines; $i++) { - echo('

'); - if ($i == 0) { - echo __("Outer Ring") . ':'; - } else { - echo __("Inner Ring"); echo($i . ':'); - } - - $no_of_points = isset($gis_data[$a][$type][$k][$i]['no_of_points']) ? $gis_data[$a][$type][$k][$i]['no_of_points'] : 4; - if ($no_of_points < 4) { - $no_of_points = 4; - } - if (isset($gis_data[$a][$type][$k][$i]['add_point'])) { - $no_of_points++; - } - echo(''); - - for ($j = 0; $j < $no_of_points; $j++) { - echo('
'); - printf(__('Point %d'), $j + 1); - echo ':'; + for ($j = 0; $j < $no_of_points; $j++) { + echo('
'); + printf(__('Point %d'), $j + 1); + echo ':'; ?> " value="" /> " value="" /> - " class="add addPoint" value=""> -
" class="add addLine" value="">
-
" class="add addPolygon" value=""> -

" /> -
" class="add addPolygon" value=""> +

" /> +

-

+

@@ -315,5 +366,4 @@ ob_start(); PMA_Response::getInstance()->addJSON('gis_editor', ob_get_contents()); ob_end_clean(); - ?> diff --git a/import.php b/import.php index 4df85995a9..c5baee7dfd 100644 --- a/import.php +++ b/import.php @@ -91,7 +91,11 @@ if (! empty($sql_query)) { // upload limit has been reached, let's assume the second possibility. ; if ($_POST == array() && $_GET == array()) { - $message = PMA_Message::error(__('You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.')); + $message = PMA_Message::error( + __('You probably tried to upload a file that is too large.' + . ' Please refer to %sdocumentation%s for a workaround for this limit.' + ) + ); $message->addParam('[a@./Documentation.html#faq1_16@_blank]'); $message->addParam('[/a]'); diff --git a/libraries/TableSearch.class.php b/libraries/TableSearch.class.php index 107efbf712..3f9e17d4e9 100644 --- a/libraries/TableSearch.class.php +++ b/libraries/TableSearch.class.php @@ -636,21 +636,24 @@ EOT; // if all column names were selected to display, we do a 'SELECT *' // (more efficient and this helps prevent a problem in IE // if one of the rows is edited and we come back to the Select results) - if (isset($_POST['zoom_submit'])) { + if (isset($_POST['zoom_submit']) || ! empty($_POST['displayAllColumns'])) { $sql_query .= '* '; } else { - $sql_query .= ! empty($_POST['displayAllColumns']) - ? '* ' - : implode(', ', $this->getCommonFunctions()->backquote($_POST['columnsToDisplay'])); + $sql_query .= implode( + ', ', + $this->getCommonFunctions()->backquote($_POST['columnsToDisplay']) + ); } // end if - $sql_query .= ' FROM ' . $this->getCommonFunctions()->backquote($_POST['table']); + $sql_query .= ' FROM ' + . $this->getCommonFunctions()->backquote($_POST['table']); $whereClause = $this->_generateWhereClause(); $sql_query .= $whereClause; // if the search results are to be ordered if (isset($_POST['orderByColumn']) && $_POST['orderByColumn'] != '--nil--') { - $sql_query .= ' ORDER BY ' . $this->getCommonFunctions()->backquote($_POST['orderByColumn']) + $sql_query .= ' ORDER BY ' + . $this->getCommonFunctions()->backquote($_POST['orderByColumn']) . ' ' . $_POST['order']; } // end if return $sql_query; diff --git a/libraries/display_change_password.lib.php b/libraries/display_change_password.lib.php index a6c19fdb47..273f3f4082 100644 --- a/libraries/display_change_password.lib.php +++ b/libraries/display_change_password.lib.php @@ -20,11 +20,14 @@ $chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5 && // Displays the form ?> > - ' . "\n" - . '' . "\n"; - }?> + ' . "\n" + . '' . "\n"; +}?>
diff --git a/libraries/engines/innodb.lib.php b/libraries/engines/innodb.lib.php index b99f8fa1ec..c9f46611ad 100644 --- a/libraries/engines/innodb.lib.php +++ b/libraries/engines/innodb.lib.php @@ -130,7 +130,9 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine } /** - * @return array detail pages + * Get information pages + * + * @return array detail pages */ function getInfoPages() { @@ -178,7 +180,10 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine . ' / ' . join( ' ', - $common_functions->formatByteDown($status['Innodb_buffer_pool_pages_total'] * $status['Innodb_page_size']) + $common_functions->formatByteDown( + $status['Innodb_buffer_pool_pages_total'] + * $status['Innodb_page_size'] + ) ) . "\n" . ' ' . "\n" . ' ' . "\n" @@ -225,75 +230,89 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine . '' . "\n" . ' '; - // not present at least since MySQL 5.1.40 - if (isset($status['Innodb_buffer_pool_pages_latched'])) { - $output .= ' ' - . ' ' - . ' ' - . ' '; - } + // not present at least since MySQL 5.1.40 + if (isset($status['Innodb_buffer_pool_pages_latched'])) { + $output .= ' ' + . ' ' + . ' ' + . ' '; + } - $output .= ' ' . "\n" - . '
' . __('Latched pages') . '' - . $common_functions->formatNumber( - $status['Innodb_buffer_pool_pages_latched'], 0 - ) - . '
' . __('Latched pages') . '' + . $common_functions->formatNumber( + $status['Innodb_buffer_pool_pages_latched'], 0 + ) + . '
' . "\n\n" - . '' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n" - . '
' . "\n" - . ' ' . __('Buffer Pool Activity') . "\n" - . '
' . __('Read requests') . '' - . $common_functions->formatNumber( - $status['Innodb_buffer_pool_read_requests'], 0 - ) . "\n" - . '
' . __('Write requests') . '' - . $common_functions->formatNumber( - $status['Innodb_buffer_pool_write_requests'], 0 - ) . "\n" - . '
' . __('Read misses') . '' - . $common_functions->formatNumber( - $status['Innodb_buffer_pool_reads'], 0 - ) . "\n" - . '
' . __('Write waits') . '' - . $common_functions->formatNumber( - $status['Innodb_buffer_pool_wait_free'], 0 - ) . "\n" - . '
' . __('Read misses in %') . '' - . ($status['Innodb_buffer_pool_read_requests'] == 0 - ? '---' - : htmlspecialchars($common_functions->formatNumber($status['Innodb_buffer_pool_reads'] * 100 / $status['Innodb_buffer_pool_read_requests'], 3, 2)) . ' %') . "\n" - . '
' . __('Write waits in %') . '' - . ($status['Innodb_buffer_pool_write_requests'] == 0 - ? '---' - : htmlspecialchars($common_functions->formatNumber($status['Innodb_buffer_pool_wait_free'] * 100 / $status['Innodb_buffer_pool_write_requests'], 3, 2)) . ' %') . "\n" - . '
' . "\n"; + $output .= ' ' . "\n" + . '' . "\n\n" + . '' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n" + . '
' . "\n" + . ' ' . __('Buffer Pool Activity') . "\n" + . '
' . __('Read requests') . '' + . $common_functions->formatNumber( + $status['Innodb_buffer_pool_read_requests'], 0 + ) . "\n" + . '
' . __('Write requests') . '' + . $common_functions->formatNumber( + $status['Innodb_buffer_pool_write_requests'], 0 + ) . "\n" + . '
' . __('Read misses') . '' + . $common_functions->formatNumber( + $status['Innodb_buffer_pool_reads'], 0 + ) . "\n" + . '
' . __('Write waits') . '' + . $common_functions->formatNumber( + $status['Innodb_buffer_pool_wait_free'], 0 + ) . "\n" + . '
' . __('Read misses in %') . '' + . ($status['Innodb_buffer_pool_read_requests'] == 0 + ? '---' + : htmlspecialchars( + $common_functions->formatNumber( + $status['Innodb_buffer_pool_reads'] * 100 + / $status['Innodb_buffer_pool_read_requests'], + 3, + 2 + ) + ) . ' %') . "\n" + . '
' . __('Write waits in %') . '' + . ($status['Innodb_buffer_pool_write_requests'] == 0 + ? '---' + : htmlspecialchars( + $common_functions->formatNumber( + $status['Innodb_buffer_pool_wait_free'] * 100 + / $status['Innodb_buffer_pool_write_requests'], + 3, + 2 + ) + ) . ' %') . "\n" + . '
' . "\n"; return $output; } @@ -305,15 +324,18 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine function getPageStatus() { return '
' . "\n"
-            . htmlspecialchars(PMA_DBI_fetch_value('SHOW INNODB STATUS;', 0, 'Status')) . "\n"
+            . htmlspecialchars(
+                PMA_DBI_fetch_value('SHOW INNODB STATUS;', 0, 'Status')
+            ) . "\n"
             . '
' . "\n"; } /** - * returns content for page $id + * Returns content for page $id * - * @param string $id page id - * @return string html output + * @param string $id page id + * + * @return string html output */ function getPage($id) { @@ -338,8 +360,8 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine } /** - * * Gets the InnoDB plugin version number + * * http://www.innodb.com/products/innodb_plugin * (do not confuse this with phpMyAdmin's storage engine plugins!) * @@ -351,8 +373,8 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine } /** - * * Gets the InnoDB file format + * * (works only for the InnoDB plugin) * http://www.innodb.com/products/innodb_plugin * (do not confuse this with phpMyAdmin's storage engine plugins!) @@ -361,12 +383,14 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine */ function getInnodbFileFormat() { - return PMA_DBI_fetch_value("SHOW GLOBAL VARIABLES LIKE 'innodb_file_format';", 0, 1); + return PMA_DBI_fetch_value( + "SHOW GLOBAL VARIABLES LIKE 'innodb_file_format';", 0, 1 + ); } /** - * * Verifies if this server supports the innodb_file_per_table feature + * * (works only for the InnoDB plugin) * http://www.innodb.com/products/innodb_plugin * (do not confuse this with phpMyAdmin's storage engine plugins!) @@ -375,7 +399,9 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine */ function supportsFilePerTable() { - $innodb_file_per_table = PMA_DBI_fetch_value("SHOW GLOBAL VARIABLES LIKE 'innodb_file_per_table';", 0, 1); + $innodb_file_per_table = PMA_DBI_fetch_value( + "SHOW GLOBAL VARIABLES LIKE 'innodb_file_per_table';", 0, 1 + ); if ($innodb_file_per_table == 'ON') { return true; } else { diff --git a/pmd_pdf.php b/pmd_pdf.php index fc9798715b..69ca11a3c5 100644 --- a/pmd_pdf.php +++ b/pmd_pdf.php @@ -95,9 +95,9 @@ $header->disableMenu();
display(); - } +if (! empty($message)) { + $message->display(); +} ?> \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: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Bladsy nommer:" @@ -36,36 +36,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Soek" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -73,29 +73,29 @@ msgstr "Soek" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Gaan" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 #, fuzzy msgid "Description" msgstr "geen Beskrywing" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "" @@ -116,18 +116,18 @@ msgstr "Databasis %s is verwyder." msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,7 +135,7 @@ msgstr "Tabel kommentaar" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -143,12 +143,12 @@ msgstr "Tabel kommentaar" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "Kolom name" msgid "Type" msgstr "Tipe" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "Tipe" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "Null" msgid "Default" msgstr "Verstekwaarde (default)" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "Verstekwaarde (default)" msgid "Links to" msgstr "Skakels na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "Skakels na" msgid "Comments" msgstr "Kommentaar" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "Kommentaar" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nee" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -273,34 +273,34 @@ msgid "View dump (schema) of database" msgstr "Sien die storting (skema) van die databasis" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Kies Alles" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -312,12 +312,12 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rye" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Grootte" @@ -347,7 +347,7 @@ msgstr "in gebruik" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 #, fuzzy msgid "Creation" msgstr "Skep" @@ -356,7 +356,7 @@ msgstr "Skep" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "" @@ -364,7 +364,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "" @@ -380,7 +380,7 @@ msgstr[1] "%s tabel(le)" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -414,9 +414,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databasis" @@ -435,69 +435,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Aksie" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Wys" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Verwyder" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Operasies" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Databasis" @@ -516,12 +516,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Hernoem tabel na" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -532,7 +532,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -543,169 +543,169 @@ msgstr "" msgid "Invalid export type" msgstr "Export" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Voeg 'n nuwe veld by" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Voeg 'n nuwe veld by" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Die boekmerk is verwyder." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jou SQL-navraag is suksesvol uitgevoer" @@ -719,7 +719,7 @@ msgstr "Terug" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." @@ -729,7 +729,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." msgid "Do you really want to execute \"%s\"?" msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -773,7 +773,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Voeg 'n nuwe veld by" @@ -827,26 +827,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Verander" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Bediener Keuse" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL-stelling" @@ -857,25 +857,25 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -897,7 +897,7 @@ msgstr "Bediener Keuse" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -915,7 +915,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Ry Statistiek" @@ -964,13 +964,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1024,32 +1024,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1065,11 +1065,11 @@ msgstr "%s tabel(le)" msgid "Questions" msgstr "Operasies" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1093,12 +1093,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Geen" @@ -1198,7 +1198,7 @@ msgstr "Algemene verwantskap funksies" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy msgid "Chart Title" msgstr "Geen tabelle" @@ -1285,7 +1285,7 @@ msgstr "Verduidelik SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1389,8 +1389,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" @@ -1635,12 +1635,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Stoor" @@ -1705,8 +1705,8 @@ msgstr "SQL resultaat" msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoreer" @@ -1814,7 +1814,7 @@ msgstr "Vertoon rye" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" @@ -1938,27 +1938,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1966,37 +1966,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Des" @@ -2045,32 +2045,32 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sa" @@ -2203,16 +2203,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2229,7 +2229,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentasie" @@ -2252,14 +2252,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fout" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-stelling" @@ -2277,83 +2277,83 @@ msgstr "SQL-stelling" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Doen Navraag" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2361,28 +2361,28 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2390,105 +2390,105 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktuur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Voeg by" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Beloer Data" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operasies" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Maak Leeg" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2505,102 +2505,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Dalend" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Dalend" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sorteer" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Voeg By/Verwyder Kriteria Ry" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Verander Navraag" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Gebruik Tabelle" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Of" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "En" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Verander" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "ten minste een van die woorde" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alle woorde" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "die presiese frase" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "as 'n regular expression" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Soek resultate vir \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2608,7 +2608,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s ooreenkomste" msgstr[1] "Totaal: %s ooreenkomste" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2616,49 +2616,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Verwyder" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Soek in databasis" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Vind:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Binne tabel(le):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2713,8 +2713,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2799,7 +2799,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Vermoor" @@ -2816,8 +2816,8 @@ msgstr "in navraag" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2828,7 +2828,7 @@ msgstr "Vertoon rye" msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2839,7 +2839,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Met gekose:" @@ -2849,8 +2849,8 @@ msgstr "Met gekose:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Kies Alles" @@ -2891,51 +2891,51 @@ msgstr "Skakel nie gevind nie" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2944,69 +2944,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Geen indeks gedefinieer!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indekse" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Die primere sleutel is verwyder" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s is verwyder" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3015,12 +3015,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "databasisse" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -3090,19 +3090,19 @@ msgstr "Gebruiker" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Biner" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3233,8 +3233,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksie" @@ -3245,11 +3245,11 @@ msgstr "Funksie" msgid "Operator" msgstr "Operasies" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Waarde" @@ -3259,67 +3259,67 @@ msgstr "Waarde" msgid "Table Search" msgstr "Soek" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Voeg by" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Kies Velde (ten minste een):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Hoeveelheid rye per bladsy" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Vertoon volgorde:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL-stelling" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3394,14 +3394,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3650,7 +3650,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -3665,12 +3665,12 @@ msgstr "Tabel" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3782,7 +3782,7 @@ msgstr "" msgid "Closed" msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3929,22 +3929,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Herstel" @@ -4218,7 +4218,7 @@ msgstr "Karakterstel van die leer:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formaat" @@ -4335,7 +4335,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4376,7 +4376,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Omring tabel en veldname met backquotes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5867,10 +5867,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6126,52 +6126,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Verander wagwoord" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Geen Wagwoord" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Tik weer" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6321,8 +6329,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6406,69 +6414,69 @@ msgstr "Bediener weergawe" msgid "authored on %1$s by %2$s" msgstr "Bediener weergawe" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Geen databasisse" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Geen databasisse" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6548,72 +6556,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "Tabel %s is geflush" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6804,8 +6812,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6821,128 +6829,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Geen databasisse" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6994,7 +7002,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7289,7 +7297,7 @@ msgstr "" msgid "Rename table to" msgstr "Hernoem tabel na" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7410,8 +7418,8 @@ msgstr "Welkom by %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7481,21 +7489,21 @@ msgstr "Verkeerde gebruikernaam/wagwoord. Toegang geweier." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7650,20 +7658,21 @@ msgstr "Vertoon Funksies" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Gasheer (host)" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Generasie Tyd" @@ -7900,7 +7909,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8102,7 +8111,7 @@ msgstr "Skepping van PDF's" msgid "Displaying Column Comments" msgstr "Kolom Kommentaar word vertoon" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8168,7 +8177,7 @@ msgstr "Kies Niks" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8179,8 +8188,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8201,31 +8210,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Enige gebruiker" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8234,34 +8243,34 @@ msgstr "Enige gebruiker" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8324,7 +8333,7 @@ msgstr "" msgid "Event name" msgstr "Gebruiker naam" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8696,7 +8705,7 @@ msgstr "Geen tabelle in databasis gevind nie." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8706,7 +8715,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Die \"%s\" databasis bestaan nie!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8754,105 +8763,105 @@ msgstr "Kenmerke" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Skep 'n nuwe bladsy" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy msgid "Automatic layout based on" msgstr "Bediener weergawe" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Kies asb. 'n bladsy om te verander" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Kies Alles" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Kies Tabelle" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolom name" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "Vertoon PDF skema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Wys ruitgebied" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Wys kleur" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Wys dimensie van tabelle" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "vertoon alle tabelle met dieselfde wydte?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy msgid "Orientation" msgstr "Skep" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9150,7 +9159,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Gebruiker" @@ -9287,8 +9296,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9349,11 +9358,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9449,7 +9458,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" @@ -9462,12 +9471,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" @@ -9498,14 +9507,14 @@ msgid "Column %s has been dropped" msgstr "Tabel %s is verwyder" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primere" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9515,7 +9524,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Volteks" @@ -9542,7 +9551,7 @@ msgstr "Relasie uitsig" msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9553,7 +9562,7 @@ msgstr "Jy moet ten minste een Kolom kies om te vertoon" msgid "Add column" msgstr "Voeg 'n nuwe veld by" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" @@ -9577,15 +9586,15 @@ msgstr "Na %s" msgid "Create an index on  %s columns" msgstr "Skep 'n indeks op %s kolomme" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Ry Statistiek" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamies" @@ -9593,15 +9602,15 @@ msgstr "dinamies" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Ry lengte" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Ry grootte" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9649,15 +9658,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Spasie verbruik" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektief" @@ -9696,18 +9705,18 @@ msgstr "" msgid "Move column" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -9720,36 +9729,36 @@ msgstr "" "a single quote (\"'\") amongst those values, backslashes it (for example '\\" "\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9947,7 +9956,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databasisse" @@ -10252,30 +10261,30 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Velde" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10283,7 +10292,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -10291,25 +10300,25 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Databasis %s is verwyder." msgstr[1] "Databasis %s is verwyder." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Databasis statistieke" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 #, fuzzy msgid "Enable Statistics" msgstr "Databasis statistieke" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10381,49 +10390,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10432,274 +10441,274 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Kies asb. 'n databasis" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Volteks" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Slegs struktuur" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Slegs struktuur" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Uitgebreide toevoegings" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Wys tabelle" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Hoeveelheid rye per bladsy" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Voortgebring deur" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Moenie die wagwoord verander nie" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Wys tabelle" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Wys tabelle" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy msgid "Related links:" msgstr "Operasies" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funksie" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10707,117 +10716,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Stellings" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10825,78 +10834,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10904,7 +10913,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10912,42 +10921,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10955,33 +10964,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10990,243 +10999,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakterstel van die leer:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11234,99 +11243,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11334,18 +11343,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11353,67 +11362,67 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sa" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "Voeg 'n nuwe veld by" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11422,7 +11431,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11430,18 +11439,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11449,11 +11458,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11461,89 +11470,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy msgid "Preset chart" msgstr "Hernoem tabel na" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Kies Tabelle" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Voeg 'n nuwe gebruiker by" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL-stelling" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Ry Statistiek" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Kies Alles" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11551,7 +11560,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekords" msgstr[1] "Rekords" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11669,19 +11678,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11973,44 +11982,44 @@ msgstr "" msgid "Wrong data" msgstr "Geen databasisse" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL resultaat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Voortgebring deur" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -12164,18 +12173,18 @@ msgstr "Drukker mooi (print view)" msgid "Index name:" msgstr "Indeks naam :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indeks tipe :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg by indeks  %s kolom(me)" @@ -12342,38 +12351,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Bediener weergawe" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" @@ -12731,8 +12740,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12859,8 +12868,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ar.po b/po/ar.po index ac300eb627..ed18c10f38 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" -"PO-Revision-Date: 2012-09-03 01:09+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" +"PO-Revision-Date: 2012-09-03 16:34+0200\n" "Last-Translator: مترجم حرّ \n" -"Language-Team: Arabic \n" -"Language: ar\n" +"Language-Team: Arabic \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 ? 4 : 5;\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "عرض الكل" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "رقم الصفحة:" @@ -39,36 +40,36 @@ msgstr "" "لا يمكن تحديث نافذة المتصفح المستهدفة,, يبدو أنك أغلقت الرئيسية أو أن " "مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "إبحث" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +77,28 @@ msgstr "إبحث" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "إنطلق" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "اسم المفتاح" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "الوصف" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "إستعمل هذه القيمة" @@ -119,18 +120,18 @@ msgstr "تم إنشاء قاعدة البيانات %1$s." msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +139,18 @@ msgstr "تعليقات الجدول" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "عمود" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +167,11 @@ msgstr "عمود" msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +183,9 @@ msgstr "نوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +198,8 @@ msgstr "خالي" msgid "Default" msgstr "إفتراضي" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +207,11 @@ msgstr "إفتراضي" msgid "Links to" msgstr "مرتبط بـ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +220,12 @@ msgstr "مرتبط بـ" msgid "Comments" msgstr "تعليقات" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +236,23 @@ msgstr "تعليقات" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "لا" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +264,8 @@ msgstr "لا" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "نعم" @@ -274,49 +275,47 @@ msgid "View dump (schema) of database" msgstr "عرض بنية قاعدة البيانات" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "لم يعثر على جداول في قادة البيانات." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "إختر الكل" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "إلغاء خيار الكل" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format -#| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "تمت إعادة تسمية قاعدة البيانات %1$s إلى %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format -#| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "تم نسخ قاعدة البيانات من %1$s إلى %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +325,14 @@ msgstr "الجدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "صفوف" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "الحجم" @@ -346,7 +345,7 @@ msgstr "قيد الإستعمال" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "الإنشاء" @@ -354,7 +353,7 @@ msgstr "الإنشاء" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "آخر تحديث" @@ -362,7 +361,7 @@ msgstr "آخر تحديث" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "آخر فحص" @@ -381,7 +380,7 @@ msgstr[5] "%s جدول (جداول)" msgid "You have to choose at least one column to display" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "التحويل إلى %sالباني المرئي%s" @@ -413,9 +412,9 @@ msgstr "الجداول المتعقبة" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "قاعدة البيانات" @@ -433,66 +432,66 @@ msgstr "محدث" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "الحالة" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "العملية" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "عرض" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "حذف بيانات التتبع لهذا الجدول" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "سقّط" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "نشط" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "غير نشط" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "الإصدارات" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "تقرير التتبع" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "الجداول الغير متتبعة" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "تتبع الجدول" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "سجل قاعدة البيانات" @@ -508,12 +507,12 @@ msgstr "نوع التصدير المحدد سيحفظ في الملف!" msgid "Bad parameters!" msgstr "عوامل متغيرة غير جيدة!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -524,7 +523,7 @@ msgstr "الملف %s موجود على الخادم بالفعل , غير ال msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." @@ -533,164 +532,165 @@ msgstr "تم حفظ الـDump إلى الملف %s." msgid "Invalid export type" msgstr "نوع التصدير غير صحيح" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "قيمة العمود \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "إستعمل خريطة الشوارع الحرة كطبقة أساسية" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "هندسة" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "نقطة" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "س" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "ص" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "نقطة %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "إضافة نقطة" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "منحنى" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "الحلقة الخارجية" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "الحلقة الداخلية" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "إضافة منحنى" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 -#| msgid "Add unique index" +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "إضافة حلقة الداخلية" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "مضلع" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "إضافة مضلع" -#: gis_data_editor.php:299 -#| msgid "Add a new User" +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "أضف هندسة" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "المخرجات" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "لا يمكن قراءة الملف" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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 "انت تحاول رفع ملف بصيغة ضغط غير معروفة (%s)." -#: import.php:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتبة الدوال الخاصة بذلك" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "الإستيراد إنتهى بنجاح , %d إستعلام تم تنفيذه." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "تم تنفيذ إستعلام SQL بنجاح" @@ -704,17 +704,16 @@ msgstr "رجوع" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." #: js/messages.php:30 #, php-format -#| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -747,18 +746,15 @@ msgid "This is not a number!" msgstr "هذا ليس رقم!" #: js/messages.php:42 -#| msgid "Add index" msgid "Add Index" msgstr "إضافة فهرس" #: js/messages.php:43 -#| msgid "Edit mode" msgid "Edit Index" msgstr "حرّر الفهرس" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format -#| msgid "Add into comments" msgid "Add %d column(s) to index" msgstr "أضف %d عمود/عواميد إلى الفهرس" @@ -807,24 +803,24 @@ msgstr "أغلاق" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تعديل" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "خريطة التتبع المباشر" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "خريطة conn./process المباشر" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "خريطة الإستعلام المباشر" @@ -834,24 +830,24 @@ msgstr "بيانات ثابتة" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -871,7 +867,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)" msgid "Connections since last refresh" msgstr "الإتصالات منذ آخر تحديث" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "عمليات" @@ -889,7 +885,7 @@ msgstr "العمليات منذ آخر تحديث" msgid "Questions (executed statements by the server)" msgstr "العمليات (الجمل المنفذة بواسطة الخادم)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "إحصائيات الإستعلام" @@ -906,17 +902,14 @@ msgid "" msgstr "" #: js/messages.php:93 -#| msgid "Tracking is not active." msgid "Query cache efficiency" msgstr "فعالية خابية المسائلة" #: js/messages.php:94 -#| msgid "Space usage" msgid "Query cache usage" msgstr "إستعمال خابية المسائلة" #: js/messages.php:95 -#| msgid "Space usage" msgid "Query cache used" msgstr "خابية المسائلة المستعملة" @@ -934,13 +927,13 @@ msgstr "المقايدة النظامية" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "كيلوبايت" @@ -969,7 +962,6 @@ msgid "Used memory" msgstr "الذاكرة المستخدمة" #: js/messages.php:110 -#| msgid "Total" msgid "Total Swap" msgstr "مجموع المقايدة" @@ -982,7 +974,6 @@ msgid "Used Swap" msgstr "المقايدة المستخدمة" #: js/messages.php:113 -#| msgid "Free pages" msgid "Free Swap" msgstr "المقايدة الحرّة" @@ -994,39 +985,37 @@ msgstr "بايتات أُرسلت" msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "اتصالات" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "إكسابايت" #: js/messages.php:128 #, php-format -#| msgid "%s table" -#| msgid_plural "%s tables" msgid "%d table(s)" msgstr "%d جدول/جداول" @@ -1035,11 +1024,11 @@ msgstr "%d جدول/جداول" msgid "Questions" msgstr "العمليات" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "الإعدادات" @@ -1060,12 +1049,12 @@ msgid "Please add at least one variable to the series" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "لا شيء" @@ -1160,7 +1149,7 @@ msgstr "تغيير الإعدادات" msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "عنوان الرسم البياني" @@ -1171,7 +1160,6 @@ msgstr "الفارق" #: js/messages.php:167 #, php-format -#| msgid "Divided by %s:" msgid "Divided by %s" msgstr "مقسوم على %s" @@ -1188,7 +1176,6 @@ msgid "From general log" msgstr "من السجل العام" #: js/messages.php:172 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "تحليل السجلات" @@ -1197,7 +1184,6 @@ msgid "Analysing & loading logs. This may take a while." msgstr "تحميل وتحليل السجل . قد يستغرق بعض الوقت." #: js/messages.php:174 -#| msgid "Cancel" msgid "Cancel request" msgstr "ألغ الطلب" @@ -1224,7 +1210,6 @@ msgid "Jump to Log table" msgstr "قفز لجدول التسجيل" #: js/messages.php:180 -#| msgid "No data" msgid "No data found" msgstr "لايوجد بيانات" @@ -1233,12 +1218,10 @@ msgid "Log analysed, but no data found in this time span." msgstr "تمّ تحليل سجل الوقائع، و لكن لم توجد أي بيانات في إمتداد الزمن هذا." #: js/messages.php:183 -#| msgid "Analyze" msgid "Analyzing..." msgstr "جاري التحليل..." #: js/messages.php:184 -#| msgid "Explain SQL" msgid "Explain output" msgstr "إشرح الخرج" @@ -1246,44 +1229,37 @@ msgstr "إشرح الخرج" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "وقت" #: js/messages.php:187 -#| msgid "Total:" msgid "Total time:" msgstr "مجموع الوقت:" #: js/messages.php:188 -#| msgid "Profiling" msgid "Profiling results" msgstr "" #: js/messages.php:189 -#| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "الجدول" #: js/messages.php:190 -#| msgid "Charset" msgid "Chart" msgstr "الرسم البياني" #: js/messages.php:191 -#| msgid "Add new field" msgid "Edit chart" msgstr "حرّر الرسم البياني" #: js/messages.php:192 -#| msgid "SQL queries" msgid "Series" msgstr "التسلسل" #. l10n: A collection of available filters #: js/messages.php:195 -#| msgid "Tables display options" msgid "Log table filter options" msgstr "خيارات مرشح جدول السجل" @@ -1343,18 +1319,16 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "استيراد" #: js/messages.php:213 -#| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "" #: js/messages.php:214 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "الرجاء تحديد الملف الذي تريد استيراده" @@ -1414,7 +1388,7 @@ msgstr "خطأ في معالجة الطلب" #: js/messages.php:238 server_databases.php:90 msgid "No databases selected." -msgstr "لا قواعد بيانات محددة" +msgstr ".لا قواعد بيانات محددة" #: js/messages.php:239 msgid "Dropping Column" @@ -1467,17 +1441,14 @@ msgid "Show indexes" msgstr "أظهار الفهارس" #: js/messages.php:257 libraries/mult_submits.inc.php:320 -#| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "التحقق من المفتاح الخارجي:" #: js/messages.php:258 libraries/mult_submits.inc.php:324 -#| msgid "Enabled" msgid "(Enabled)" msgstr "(ممكن)" #: js/messages.php:259 libraries/mult_submits.inc.php:324 -#| msgid "Disabled" msgid "(Disabled)" msgstr "(معطل)" @@ -1511,23 +1482,19 @@ msgstr "" #: js/messages.php:273 #, php-format -#| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "القيم للعمود %s" #: js/messages.php:274 -#| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "القيم لعمود جديد" #: js/messages.php:275 -#| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field" msgstr "أدخل كل قيمة بحقل منفصل" #: js/messages.php:276 #, php-format -#| msgid "Add a new User" msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" @@ -1564,12 +1531,12 @@ msgstr "وقت التنفيذ الأقصى" msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "حفظ" @@ -1598,7 +1565,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." #: js/messages.php:306 -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." msgstr "" @@ -1620,17 +1586,15 @@ msgid "Select two different columns" msgstr "إختر عمودين مختلفين" #: js/messages.php:314 -#| msgid "SQL result" msgid "Query results" msgstr "" #: js/messages.php:315 -#| msgid "Table of contents" msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "تجاهل" @@ -1716,7 +1680,6 @@ msgid "Go to link" msgstr "ذهاب للرابط" #: js/messages.php:358 -#| msgid "Column names" msgid "Copy column name" msgstr "أنسخ اسم العمود" @@ -1725,7 +1688,6 @@ msgid "Right-click the column name to copy it to your clipboard." msgstr "" #: js/messages.php:360 -#| msgid "Showing rows" msgid "Show data row(s)" msgstr "شاهد سطر/أسطر البيانات" @@ -1733,7 +1695,7 @@ msgstr "شاهد سطر/أسطر البيانات" msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "توليد" @@ -1832,63 +1794,63 @@ msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "ديسمبر" @@ -1926,32 +1888,32 @@ msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "السبت" @@ -2002,7 +1964,6 @@ msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. #: js/messages.php:508 -#| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "لا شيء" @@ -2049,12 +2010,10 @@ msgstr "فشلت في تهيئة السلسلة للقاعدة '%s'." msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule" msgstr "" -"إعلان قاعدة غير صالح على السطر %1$s، السطر المتوقع هو %2$s من القاعدة " -"السابقة" +"إعلان قاعدة غير صالح على السطر %1$s، السطر المتوقع هو %2$s من القاعدة السابقة" #: libraries/Advisor.class.php:378 #, php-format -#| msgid "Invalid server index: %s" msgid "Invalid rule declaration on line %s" msgstr "إعلان قاعدة غير صحيح على السطر %s" @@ -2068,16 +2027,16 @@ msgstr "أحرف غير متوقعة على السطر %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "لكل ثانية" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "لكل دقيقة" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "لكل ساعة" @@ -2094,7 +2053,7 @@ msgstr "كبير: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "مستندات وثائقية" @@ -2117,14 +2076,14 @@ msgid "en" msgstr "إنجليزي" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "خطأ" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "استعلام SQL" @@ -2142,210 +2101,210 @@ msgstr "استعلام SQL" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "فشل الإتصال بمدقق SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "إرسال الإستعلام" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "تحديث" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "تخطي تدقيق SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "التدقيق في استعلام SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "تعديل سريع لهذا الإستعلام" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "جانبي" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "الأحد" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "مدخلات مفقودة:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "بداية" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "سابق" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "التالي" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "نهاية" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "الذهاب إلى قاعدة البيانات "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "بناء" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "إدخال" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "استعراض" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "عمليات" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "تصفح حاسبك:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" -msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." +msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "إفراغ" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "تنفيذ" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "طباعة" @@ -2362,98 +2321,98 @@ msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينب msgid "Font size" msgstr "حجم الخط" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "تصاعديا" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "تنازليا" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "ترتيب" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "المعايير" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "إضافه/حذف معايير الصفوف" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "إضافه/حذف عمود" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "تجديد الإستعلام" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "إستخدم الجداول" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "أو" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "و" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "إدخال" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "حذف" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "تعديل" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "إستعلام SQL في قاعدة البيانات %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "كل الكلمات" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "الجملة بالضبط" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "كتعبير قياسي" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتائج البحث عن \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2464,7 +2423,7 @@ msgstr[3] "المجموع: %sتطابق" msgstr[4] "المجموع: %sتطابق" msgstr[5] "المجموع: %sتطابق" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2477,44 +2436,44 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "حذف" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "بحث في قاعدة البيانات" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "ابحث:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "الكلمات مفصولة بمسافة (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "داخل الجداول:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "داخل العمود:" @@ -2523,22 +2482,18 @@ msgid "Save edited data" msgstr "إحفظ البيانات المغييرة" #: libraries/DisplayResults.class.php:711 -#| msgid "Add/Delete Field Columns" msgid "Restore column order" msgstr "استعادة ترتيب العمود" #: libraries/DisplayResults.class.php:911 -#| msgid "Start" msgid "Start row" msgstr "صف البداية" #: libraries/DisplayResults.class.php:915 -#| msgid "Number of tables" msgid "Number of rows" msgstr "عدد الصفوف" #: libraries/DisplayResults.class.php:924 -#| msgid "More" msgid "Mode" msgstr "" @@ -2556,7 +2511,6 @@ msgstr "عمودي" #: libraries/DisplayResults.class.php:940 #, php-format -#| msgid "Execute" msgid "Headers every %s rows" msgstr "رؤوس كل %s أسطر" @@ -2564,8 +2518,8 @@ msgstr "رؤوس كل %s أسطر" msgid "Sort by key" msgstr "رتب حسب المفتاح" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2595,13 +2549,11 @@ msgstr "خيارات" #: libraries/DisplayResults.class.php:1593 #: libraries/DisplayResults.class.php:1699 -#| msgid "Partial Texts" msgid "Partial texts" msgstr "نصوص جزئية" #: libraries/DisplayResults.class.php:1594 #: libraries/DisplayResults.class.php:1703 -#| msgid "Full Texts" msgid "Full texts" msgstr "نصوص كاملة" @@ -2610,7 +2562,6 @@ msgid "Relational key" msgstr "مفتاح العلائقية" #: libraries/DisplayResults.class.php:1609 -#| msgid "Relational schema" msgid "Relational display column" msgstr "عمود عرض علائقية" @@ -2628,7 +2579,6 @@ msgid "Show binary contents as HEX" msgstr "عرض البيانات الثنائية بالنظام الست عشري" #: libraries/DisplayResults.class.php:1642 -#| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "" @@ -2646,7 +2596,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "إبطال" @@ -2655,8 +2605,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"ممكن أن يكون تقريبي. أنظر إلى " -"[a@./Documentation.html#faq3_11@Documentation]الأسئلة المتكررة 3.11[/a]" +"ممكن أن يكون تقريبي. أنظر إلى [a@./Documentation.html#faq3_11@Documentation]" +"الأسئلة المتكررة 3.11[/a]" #: libraries/DisplayResults.class.php:4889 msgid "in query" @@ -2665,8 +2615,8 @@ msgstr "في الاستعلام" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ %" "sdocumentation%s." @@ -2679,7 +2629,7 @@ msgstr "مشاهدة السجلات " msgid "total" msgstr "المجموع" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" @@ -2690,7 +2640,7 @@ msgstr "استغرق الاستعلام %01.4f ثانية" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "مع المحدد:" @@ -2700,8 +2650,8 @@ msgstr "مع المحدد:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "تحديد الكل" @@ -2717,10 +2667,9 @@ msgstr "عرض نسخة للطباعة" #: libraries/DisplayResults.class.php:5220 msgid "Print view (with full texts)" -msgstr "عرض الطباعة (مع النصوص الكاملة)." +msgstr "عرض الطباعة (مع النصوص الكاملة)" #: libraries/DisplayResults.class.php:5291 tbl_chart.php:80 -#| msgid "Display PDF schema" msgid "Display chart" msgstr "عرض الرسم البياني" @@ -2729,7 +2678,6 @@ msgid "Visualize GIS data" msgstr "إبداء بيانات نظام المعلومات الجغرافية للعيان" #: libraries/DisplayResults.class.php:5349 view_create.php:152 -#| msgid "Create" msgid "Create view" msgstr "إنشاء عرض" @@ -2741,41 +2689,43 @@ msgstr "لم يمكن إيجاد الوصلة" msgid "Too many error messages, some are not displayed." msgstr "كثيراً من رسائل الخطأ، لن تعرض كلها." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "الملف لم يكن مرفوعاً." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php" +msgstr "إنّ الملف المرفوع يتجاوز توجيهة upload_max_filesize في الملف php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML" +msgstr "" +"إنّ الملف المرفوع يتجاوز التوجيهة MAX_FILE_SIZE اللتي تم تحديدها في إستمارة " +"الــHTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "تم رفع جزء من الملف فقط." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "المجلد المؤقت مفقود." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "فشلت عملية كتابة الملف على القرص." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "رفع الملف إستوقف من قبل الامتداد." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2783,11 +2733,11 @@ msgstr "" "خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "خطأ عند نقل الملف المرفوع." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "لايمكن قراءة الملف المرفوع." @@ -2796,67 +2746,66 @@ msgstr "لايمكن قراءة الملف المرفوع." msgid "Open new phpMyAdmin window" msgstr "إفتح نافذة phpMyAdmin جديدة" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 -#| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "يجب تفعيل Javascript بعد هذه النقطة" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "لم يتم تعريف الفهرس!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "فهارس" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "فريد" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "محزم" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "تعليق" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "لقد تم حذف المفتاح الأساسي" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "تم حذف الفهرس %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2865,12 +2814,12 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "قاعدة بيانات" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "خادم" @@ -2930,7 +2879,6 @@ msgid "Designer" msgstr "المصمم" #: libraries/Menu.class.php:464 -#| msgid "User" msgid "Users" msgstr "المستخدمون" @@ -2939,18 +2887,18 @@ msgstr "المستخدمون" msgid "Synchronize" msgstr "تزامن" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "سجل ثنائي" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "إستنساخ" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "متغيرات" @@ -3023,7 +2971,7 @@ msgstr "لايوجد معلومات تفصيلية لحالة محرك التخ #: libraries/StorageEngine.class.php:352 libraries/structure.lib.php:205 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL" +msgstr "%s هو محرك التخزين الغيابي على خادم الMySQL هذا." #: libraries/StorageEngine.class.php:355 #, php-format @@ -3051,7 +2999,6 @@ msgstr "لم يعثر على قاعدة البيانات المصدر `%s`!" #: libraries/Table.class.php:764 #, php-format -#| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات الهدف `%s`!" @@ -3070,7 +3017,6 @@ msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" #: libraries/Table.class.php:1257 #, php-format -#| msgid "Table %s has been renamed to %s" msgid "Table %1$s has been renamed to %2$s." msgstr "تمّت تسمية الجدول %1$s إلى %2$s." @@ -3093,8 +3039,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "دالة" @@ -3104,78 +3050,74 @@ msgstr "دالة" msgid "Operator" msgstr "عامل التشغيل" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "القيمة" #: libraries/TableSearch.class.php:218 -#| msgid "Search" msgid "Table Search" msgstr "بحث في الجدول" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 -#| msgid "Insert" +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "تحرير/إدخال" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "اختيار الأعمدة (واحد على الأقل):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "أضف شروط البحث (الفقرة \"where\" ):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "رقم السجلات لكل صفحة" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "ترتيب العرض:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "أقصى عدد الصفوف للرسم" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: libraries/TableSearch.class.php:989 -#| msgid "Hide search criteria" +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "معايير بحث إضافية" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "تصفح/حرّر النقاط" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "كيفية الإستعمال" -#: libraries/TableSearch.class.php:1193 -#| msgid "Reset" +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "إعادة تعيين المقربة" @@ -3248,14 +3190,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3283,7 +3225,6 @@ msgstr "" #: libraries/Types.class.php:319 libraries/Types.class.php:721 #, php-format -#| msgid "Create version %s of %s.%s" msgid "A date, supported range is %1$s to %2$s" msgstr "تاريخ ما، إن النطاق المسموح به هو من %1$s إلى %2$s" @@ -3300,7 +3241,6 @@ msgstr "" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format -#| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "زمن ما، النطاق يكون من %1$s إلى %2$s" @@ -3407,7 +3347,6 @@ msgid "A curve with linear interpolation between points" msgstr "" #: libraries/Types.class.php:363 -#| msgid "Add a polygon" msgid "A polygon" msgstr "مضلع" @@ -3433,19 +3372,16 @@ msgid "Numeric" msgstr "رقمية" #: libraries/Types.class.php:642 libraries/Types.class.php:976 -#| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "التاريخ والوقت" #: libraries/Types.class.php:651 libraries/Types.class.php:979 -#| msgid "Linestring" msgctxt "string types" msgid "String" msgstr "السلسلة" #: libraries/Types.class.php:672 -#| msgid "Total" msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -3504,7 +3440,7 @@ msgstr "مشترك" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "جداول" @@ -3518,12 +3454,12 @@ msgstr "جداول" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "بيانات" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "الحمل الزائد" @@ -3631,7 +3567,7 @@ msgstr "فتح" msgid "Closed" msgstr "إغلاق" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3769,22 +3705,22 @@ msgstr "ويكي" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "هذا الإعداد معطل , لن يتم تطبيقه في التكوين" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "تعيين القيمة: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "إستعادة القيمة الإفتراضية" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "السماح للمستخدمين بتخصيص هذه القيمة" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "إعادة تعيين" @@ -3812,8 +3748,6 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" -"تفعيل هذا يسمح للصفحات الموجودة في أماكن مختلفة بإستدعاء phpMyAdmin داخل " -"إطار, وهذا من المحتمل ان يسبب ثغرة أمنية." #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -3891,7 +3825,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:37 -#| msgid "Customize text input fields" msgid "Minimum size for input field" msgstr "الحد الأدنى لحجم حقل إدخال" @@ -3902,7 +3835,6 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:39 -#| msgid "Customize text input fields" msgid "Maximum size for input field" msgstr "أقصى حجم لحقل الإدخال" @@ -3989,7 +3921,6 @@ msgid "Whether the table structure actions should be hidden" msgstr "" #: libraries/config/messages.inc.php:59 -#| msgid "Propose table structure" msgid "Hide table structure actions" msgstr "" @@ -4059,7 +3990,7 @@ msgstr "مجموعة الأحرف للملف" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "صيغة" @@ -4168,7 +4099,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "نوع MIME" @@ -4204,7 +4135,7 @@ msgid "Enclose table and column names with backquotes" msgstr "حماية أسماء الجداول و الحقول ب \"`\" " #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "وضع توافق SQL" @@ -4546,7 +4477,6 @@ msgid "Customize startup page" msgstr "تخصيص صفحة بدء التشغيل" #: libraries/config/messages.inc.php:228 -#| msgid "Databases" msgid "Database structure" msgstr "بنية قاعدة البيانات" @@ -4555,7 +4485,6 @@ msgid "Choose which details to show in the database structure (list of tables)" msgstr "" #: libraries/config/messages.inc.php:230 -#| msgid "Databases" msgid "Table structure" msgstr "بنية الجدول" @@ -5667,10 +5596,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5928,52 +5857,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "تغيير كلمة السر" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "لا كلمة سر" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "أعد كتابة" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6126,8 +6063,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6217,75 +6154,75 @@ msgstr "انشئ إصدار %s لـ %s.s%s" msgid "authored on %1$s by %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "هيئة الملفات المستوردة" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "لا يمكن الدخول إلى خادم MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" msgstr "لايوجد قواعد بيانات" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" msgstr "لايوجد قواعد بيانات" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6363,71 +6300,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "وضع InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "صفحات" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "صفحات حرة" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "صفحات مشغولة" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6618,8 +6555,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6636,129 +6573,129 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "لايوجد قواعد بيانات" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "أخفاء" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "ثنائي" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6808,7 +6745,7 @@ msgstr "" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7097,7 +7034,7 @@ msgstr "خيارات الجدول" msgid "Rename table to" msgstr "تغيير اسم جدول إلى" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7213,8 +7150,8 @@ msgstr "أهلا بك في %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 @@ -7288,21 +7225,21 @@ msgstr "خطأ في اسم المستخدم أو كلمة السر. الوصول msgid "Can not find signon authentication script:" msgstr "لايمكن إيجاد برنامج مصادقة التوقيع:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "الملف %s لايحتوي على أي مفتاح تعريف" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "فشلت المصادقة المحسوسة" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "مصادقة..." @@ -7467,20 +7404,21 @@ msgstr "أنواع MIME المتوفرة" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "المزود" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "أنشئ في" @@ -7720,7 +7658,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "اسم الجدول" @@ -7969,7 +7907,7 @@ msgstr "إنشاء ملفات PDF" msgid "Displaying Column Comments" msgstr "إظهار تعليقات العمود" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "تحويل المتصفح" @@ -7977,7 +7915,7 @@ msgstr "تحويل المتصفح" #: libraries/relation.lib.php:173 msgid "" "Please see the documentation on how to update your column_comments table" -msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." +msgstr "رجاء راجع التوثيق لكيفية تحديث جدول column_comments." #: libraries/relation.lib.php:183 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" @@ -8035,7 +7973,7 @@ msgstr "إلغاء تحديد الكل" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8046,8 +7984,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8067,31 +8005,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "متغير" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "رقم الخادم" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "أي مستخدم" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8100,34 +8038,34 @@ msgstr "أي مستخدم" msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8194,7 +8132,7 @@ msgstr "" msgid "Event name" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "نوع الحدث" @@ -8314,7 +8252,7 @@ msgstr "نوع الإجراء غير صحيح: %s" #: libraries/rte/rte_routines.lib.php:303 msgid "Sorry, we failed to restore the dropped routine." -msgstr "عفواً , فشل في إستعادة الإجراء المزال" +msgstr "" #: libraries/rte/rte_routines.lib.php:308 #, php-format @@ -8603,7 +8541,7 @@ msgstr "لا توجد جداول متوفره في قاعدة البيانات msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8613,7 +8551,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "الجدول \"%s\" غير موجود!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8660,108 +8598,108 @@ msgstr "الخواص" msgid "Extra" msgstr "إضافي" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "أنشئ صفحة جديدة" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "مظهر تلقائي" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "رجاء اختر صفحة لتعديلها" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "اختر الجداول" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "اختر الجداول" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "اسم العمود" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "بناء الارتباطات" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "أظهر تخطيط الجدول" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "أظهر اللون" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "إظهار أبعاد الجداول" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "أظهر كل الجداول بنفس العرض" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "قاموس البيانات" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "عرض الصفحة" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "طول الصفحة" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "الإنشاء" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "حجم الورق" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" "تحتوي الصفحة الحالية مراجع لجداول لم تعد موجودة. هل تود حذف هذه المراجع؟" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "toggle scratchboard" @@ -9061,7 +8999,7 @@ msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s&qu #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "المستخدم" @@ -9173,7 +9111,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2708 msgid "Reloading the privileges" -msgstr "قيد إعادة قراءة الصلاحيات." +msgstr "إعادة تحميل الأمتيازات" #: libraries/server_privileges.lib.php:2727 msgid "The selected users have been deleted successfully." @@ -9201,8 +9139,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 " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -9265,11 +9203,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -9362,7 +9300,7 @@ msgstr "" "لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " "مشروح في %sالتوثيق%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "تم إفراغ محتويات الجدول %s" @@ -9375,12 +9313,12 @@ msgstr "التتبع نشط." msgid "Tracking is not active." msgstr "التتبع غير نشط." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "تم إزالة %s من العرض" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "تم إزالة الجدول %s" @@ -9408,14 +9346,14 @@ msgid "Column %s has been dropped" msgstr "تم حذف العمود %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "أساسي" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "فهرست" @@ -9425,7 +9363,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "النص كاملا" @@ -9453,7 +9391,7 @@ msgstr "عرض العلاقات" msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9463,7 +9401,7 @@ msgstr "عليك اختيار عمود واحد على الأقل للعرض" msgid "Add column" msgstr "إضافة عمود" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" @@ -9487,15 +9425,15 @@ msgstr "بعد %s" msgid "Create an index on  %s columns" msgstr "إنشاء فهرس للعمود %s" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "إحصائيات" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "ديناميكي" @@ -9503,15 +9441,15 @@ msgstr "ديناميكي" msgid "partitioned" msgstr "مقسم" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "طول الصف" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "مقاس الصف " -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9561,15 +9499,15 @@ msgstr "إضافة حقل جديد" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "معلومات" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "المساحة المستخدمة" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "فعال" @@ -9611,7 +9549,7 @@ msgstr "" msgid "Move column" msgstr "إضافه/حذف عمود حقل" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9620,11 +9558,11 @@ msgstr "" "لعرض قائمة بخيارات التحويل المتوفرة وأنواع تحويلات MIME الخاصة بها، اضغط على " "%sخيارات التحويل%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "خيارات التحويل" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9635,36 +9573,36 @@ msgstr "" ">إذا احتجت أن تضع شرطة مائلة (\"\\\") أو علامة تنصيص (\"'\") بين هذه القيم، " "اسبقها بشرطة مائلة )على سبيل المثال '\\\\xyz' أو 'a\\'b'(." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "لا شيء" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "كما هو معرف:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "بعد %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9848,8 +9786,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: main.php:468 #, php-format @@ -9865,7 +9803,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "لايوجد قواعد بيانات" @@ -10176,29 +10114,29 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "الملفات" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "اسم السجل" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "موضع" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10206,7 +10144,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "مجموعات المحارف وCollations" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10218,24 +10156,24 @@ msgstr[3] "تم حذف قواعد البيانات %s بنجاح." msgstr[4] "تم حذف قواعد البيانات %s بنجاح." msgstr[5] "تم حذف قواعد البيانات %s بنجاح." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "إحصائيات قواعد البيانات" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "مكن الإحصائيات" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10249,7 +10187,7 @@ msgstr "" #: server_export.php:20 msgid "View dump (schema) of databases" -msgstr "اعرض أو احفظ بناء قواعد البيانات." +msgstr "" #: server_plugins.php:67 msgid "Modules" @@ -10307,50 +10245,50 @@ msgstr "تم إعادة قراءة الصلاحيات بنجاح." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10359,277 +10297,277 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "البنية فقط" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "البنية فقط" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "أخطاء." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "بيانات التشغيل" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of tables" msgid "Number of data points: " msgstr "عدد الجداول" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "حدث" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "مرشح" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "لاتغير كلمة السر" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "شاهد الجدول" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "شاهد الجدول" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "الروابط" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "نوع الاستعلام" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Actions" msgid "Instructions" msgstr "أفعال" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10637,117 +10575,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "تخصيص صفحة بدء التشغيل" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "أوامر" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "مضى على عمل خادم MySQL مدة %s. بدأ العمل في %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "استلم" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "أرسل" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "ألغي" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "رقم" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "أمر" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10755,78 +10693,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10834,7 +10772,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10842,42 +10780,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10885,33 +10823,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10920,244 +10858,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "هيئة الملفات المستوردة" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11165,99 +11103,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11265,18 +11203,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11284,72 +11222,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "التتبع غير نشط." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ابدأ" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "إضافة حقل جديد" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "إستعادة القيمة الإفتراضية" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11358,7 +11296,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11366,18 +11304,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11385,11 +11323,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11397,93 +11335,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "حذف الرسم البياني" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "اختر الجداول" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "اسم الجدول غير صالح" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "أضف مستخدم جديد" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "إحصائيات" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "اختر الجداول" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "نوع الاستعلام" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11495,7 +11433,7 @@ msgstr[3] "الثانية" msgstr[4] "الثانية" msgstr[5] "الثانية" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11620,19 +11558,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "متغيرات وإعدادات الخادم" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "قيمة الجلسة" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "قيمة عامة" @@ -11920,44 +11858,44 @@ msgstr "" msgid "Wrong data" msgstr "لايوجد بيانات" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "أنشئ بواسطة" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "علامة" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12117,17 +12055,17 @@ msgstr "وضع التعديل" msgid "Index name:" msgstr "اسم الفهرس :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"الأساسي\" يجب يجب أن يكون الاسم وأيضاً فقط المفتاح الأساسي!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "نوع الفهرس :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "إضافه كفهرس  %s صف(ـوف)" @@ -12293,41 +12231,41 @@ msgstr "تصدير كـ %s" msgid "Show versions" msgstr "عرض الإصدارات" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "تعطيل التتبع لـ %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "تعطيل الآن" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "تنشيط التتبع لـ %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "تنشيط الآن" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "تتبع تقارير تعريف البيانات:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "تتبع تقارير التلاعب بالبيانات:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "إنشاء إصدار" @@ -12698,8 +12636,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12832,8 +12770,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13290,12 +13228,10 @@ msgstr "" #: libraries/advisory_rules.txt:381 #, php-format -#| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "" #: libraries/advisory_rules.txt:385 -#| msgid "Connections" msgid "Percentage of used connections" msgstr "" @@ -13319,12 +13255,10 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:392 -#| msgid "Connections" msgid "Percentage of aborted connections" msgstr "" #: libraries/advisory_rules.txt:395 libraries/advisory_rules.txt:402 -#| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." msgstr "" @@ -13342,7 +13276,6 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "%s%% من كل الإتصالات أجهضة. يجب أن تكون هذه القيمة أقل من 1%%" #: libraries/advisory_rules.txt:399 -#| msgid "Connections" msgid "Rate of aborted connections" msgstr "نسبة إجهاض الإتصالات" @@ -13354,12 +13287,10 @@ msgstr "" "نسبة الإتصالات المجهضة هي %s، يجب أن تكون هذه القيمة أقل من واحد في الساعة" #: libraries/advisory_rules.txt:406 -#| msgid "Format of imported file" msgid "Percentage of aborted clients" msgstr "النسبة المئوية للزبائن المجهضين" #: libraries/advisory_rules.txt:409 libraries/advisory_rules.txt:416 -#| msgid "Allows creating temporary tables." msgid "Too many clients are aborted." msgstr "تم إجهاض الكثير من الزبائن." @@ -13376,7 +13307,6 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "%s%% من كل الزبائن تم إجهاضهن. يجب أن تكون هذه القيمة أقل من 2%%" #: libraries/advisory_rules.txt:413 -#| msgid "Format of imported file" msgid "Rate of aborted clients" msgstr "نسبة الزبائن المجهوضين" @@ -13832,8 +13762,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " -#~ "%sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" +#~ "sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index 39917db9f3..3771b0ff6e 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: azerbaijani \n" -"Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sehife Nömresi:" @@ -36,36 +36,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Axtarış" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -73,28 +73,28 @@ msgstr "Axtarış" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Davam" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Açar söz" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Haqqında" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "" @@ -116,18 +116,18 @@ msgstr "%1$s bazası yaradildi." msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,7 +135,7 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -143,12 +143,12 @@ msgstr "Cedvel haqqında qısa izahat" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "Sütun adları" msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "Null" msgid "Default" msgstr "Başlanğıc deyeri" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "Başlanğıc deyeri" msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "Links to" msgid "Comments" msgstr "Qısa İzahatlar" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "Qısa İzahatlar" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Xeyir" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "Xeyir" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Beli" @@ -273,34 +273,34 @@ msgid "View dump (schema) of database" msgstr "Me'lumat bazasının sxemini göster" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Hamısını Seç" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -312,12 +312,12 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "Cedvel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Sıra sayı" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Boy" @@ -347,7 +347,7 @@ msgstr "istifadede" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Quruluş" @@ -355,7 +355,7 @@ msgstr "Quruluş" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "En son yenilenme" @@ -363,7 +363,7 @@ msgstr "En son yenilenme" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "En son yoxlama" @@ -379,7 +379,7 @@ msgstr[1] "%s cedvel" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -414,9 +414,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Me'lumat Bazası" @@ -435,69 +435,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Fealiyyetler" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Göster" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Leğv et" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Me'lumat Bazası" @@ -518,12 +518,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Yeni sahe elave et" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, 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:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -536,7 +536,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." @@ -546,170 +546,170 @@ msgstr "Sxem %s faylına qeyd edildi." msgid "Invalid export type" msgstr "Eksport şekli" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Yeni sahe elave et" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Setir leğvedicisi (Lines terminated by)" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Yeni sahe elave et" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Bookmark silindi." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Fayl oxuna bilmir" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir" @@ -725,7 +725,7 @@ msgstr "" "phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı " "işleyir." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." @@ -735,7 +735,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Do you really want to execute \"%s\"?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -785,7 +785,7 @@ msgstr "Yeni sahe elave et" msgid "Edit Index" msgstr "Bir sonrakı setre keç" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Yeni sahe elave et" @@ -842,26 +842,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Quraşdırılmış Serverler" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL sorğusu" @@ -872,24 +872,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -911,7 +911,7 @@ msgstr "Quraşdırılmış Serverler" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prosesler" @@ -931,7 +931,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Sıra Statistikası" @@ -977,13 +977,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1041,32 +1041,32 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Elaqeler" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1082,11 +1082,11 @@ msgstr "%s cedvel" msgid "Questions" msgstr "Emeliyyatlar" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Neqliyyat" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1110,12 +1110,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Heç biri" @@ -1215,7 +1215,7 @@ msgstr "Ümumi elaqe variantları" msgid "Current settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1303,7 +1303,7 @@ msgstr "SQL-i İzah Et" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Müddet" @@ -1411,8 +1411,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1661,12 +1661,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Qeyd Et" @@ -1732,8 +1732,8 @@ msgstr "SQL result" msgid "Data point content" msgstr "İçindekiler Cedveli" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Diqqete Alma" @@ -1841,7 +1841,7 @@ msgstr "Gösterilen setirler" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Qurucu" @@ -1966,27 +1966,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1994,37 +1994,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dek" @@ -2073,32 +2073,32 @@ msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Şen" @@ -2231,16 +2231,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "saniyede" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "deqiqede" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "saatda" @@ -2257,7 +2257,7 @@ msgstr "En çox: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentasiya" @@ -2280,14 +2280,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Xeta" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL sorğusu" @@ -2305,87 +2305,87 @@ msgstr "SQL sorğusu" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Emri İcra Et" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL Tesdiqle" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Baz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Yeni sahe elave et" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2393,28 +2393,28 @@ msgctxt "First page" msgid "Begin" msgstr "Başla" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Evvelki" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Sonrakı" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2422,106 +2422,106 @@ msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Quruluş" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Elave et" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "İçindekiler" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Boşalt" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Çap et" @@ -2538,102 +2538,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Artan sırada" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Azalan sırada" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sırala" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteriyalar" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Kriteria Setirlerini Elave Et/Sil" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Sorğunu Yenile" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Use Tables" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ya da" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ve" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modify" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "sözlerin en azından birini" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "bütün sözleri" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "tamamile eyni sözü" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "requlyar ifade (regular expression) olaraq" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" üçün axtarış neticeleri %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2641,7 +2641,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Cemi: %s uyğunluq" msgstr[1] "Cemi: %s uyğunluq" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2649,49 +2649,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Sil" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Tap:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Inside table(s):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2746,8 +2746,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2834,7 +2834,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Söndür" @@ -2851,8 +2851,8 @@ msgstr "in query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2863,7 +2863,7 @@ msgstr "Gösterilen setirler" msgid "total" msgstr "cemi" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" @@ -2874,7 +2874,7 @@ msgstr "sorğu %01.4f saniyede icra edildi" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Seçilenleri:" @@ -2884,8 +2884,8 @@ msgstr "Seçilenleri:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Hamısını Seç" @@ -2926,51 +2926,51 @@ msgstr "Link tapılmadı" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2979,70 +2979,70 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "İndeks te'yin edilmedi!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksler" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 #, fuzzy msgid "Collation" msgstr "Quruluş" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Birinci dereceli açar leğv edildi" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi leğv edildi" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3051,12 +3051,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Me'lumat Bazaları" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3126,20 +3126,20 @@ msgstr "İstifadeçi" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Binary" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 #, fuzzy msgid "Replication" msgstr "Relations" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Deyişenler" @@ -3273,8 +3273,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksiya" @@ -3285,11 +3285,11 @@ msgstr "Funksiya" msgid "Operator" msgstr "Emeliyyatlar" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Deyer" @@ -3299,67 +3299,67 @@ msgstr "Deyer" msgid "Table Search" msgstr "Axtarış" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Elave et" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Sahe seçin (en az birini):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Sehife başına düşen setir sayı" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Sıralama şekli:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL sorğusu" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3434,14 +3434,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3691,7 +3691,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Cedveller" @@ -3705,12 +3705,12 @@ msgstr "Cedveller" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Me'lumat" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Aşma deyeri" @@ -3822,7 +3822,7 @@ msgstr "" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3971,22 +3971,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Yenile" @@ -4266,7 +4266,7 @@ msgstr "Faylın Charset-i:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4390,7 +4390,7 @@ msgstr "Etiket açarı" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipi" @@ -4431,7 +4431,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Cedvel ve sahe adlarını tek dırnaq arasına al" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5941,10 +5941,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6199,52 +6199,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Parolu Deyişdir" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Parol Yoxdur" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6398,8 +6406,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6487,71 +6495,71 @@ msgstr "Server versiyası" msgid "authored on %1$s by %2$s" msgstr "Server versiyası" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL server-e gire bilmirem" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6631,72 +6639,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "%s cedveli flush-landı" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6888,8 +6896,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6906,127 +6914,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 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)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Sadece quruluş" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, 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 " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web-server upload direktoriyası" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7080,7 +7088,7 @@ msgstr "" msgid "Add prefix" msgstr "Yeni sahe elave et" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7382,7 +7390,7 @@ msgstr "Cedvel başlığı" msgid "Rename table to" msgstr "Cedveli yeniden adlandır" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Depolama Motorları" @@ -7505,8 +7513,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7577,21 +7585,21 @@ msgstr "Yanlış istifadeçi adı ve ya parol. Giriş tesdiq edilmedi." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7755,20 +7763,21 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Hazırlanma Vaxtı" @@ -8012,7 +8021,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8262,7 +8271,7 @@ msgstr "PDF-lerin qurulması" msgid "Displaying Column Comments" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browser transformation" @@ -8328,7 +8337,7 @@ msgstr "Heç Birini Seçme" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8339,8 +8348,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8361,32 +8370,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Deyişen" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Server" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Her hansı istifadeçi" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8395,34 +8404,34 @@ msgstr "Her hansı istifadeçi" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8486,7 +8495,7 @@ msgstr "" msgid "Event name" msgstr "Eksport şekli" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Eksport şekli" @@ -8868,7 +8877,7 @@ msgstr "Me'lumat bazasında cedvel yoxdur." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8878,7 +8887,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "\"%s\" cedveli mövcud deyil!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8925,101 +8934,101 @@ msgstr "Xüsusiyyetler" msgid "Extra" msgstr "Elave Xüs." -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Yeni Sehife qur" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sehife Nömresi:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatik şablon" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Xahiş edirem, deyişdirilecek Sehifeni seç" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Hamısını Seç" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Sütun adları" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Rengini göster" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Cedvellerin ölçülerini göster" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "eyni enli bütün cedveller gösterilsinmi?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landşaft" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Quruluş" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9027,7 +9036,7 @@ msgstr "" "Hal-hazırki sehifen artıq mövcud olmayan Cedvellere bağlıdır. Bu elaqelerin " "silinmesini istermisiniz?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9331,7 +9340,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "İstifadeçi" @@ -9472,8 +9481,8 @@ msgstr "User overview" 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 " @@ -9538,11 +9547,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9626,7 +9635,7 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" @@ -9639,12 +9648,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" @@ -9675,14 +9684,14 @@ msgid "Column %s has been dropped" msgstr "%s cedveli leğv edildi" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Birinci Dereceli" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "İndeks" @@ -9692,7 +9701,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tam metn (Fulltext)" @@ -9719,7 +9728,7 @@ msgstr "" msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9730,7 +9739,7 @@ msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" msgid "Add column" msgstr "Yeni sahe elave et" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" @@ -9754,15 +9763,15 @@ msgstr "Sonra: %s" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks yarat" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamik" @@ -9770,15 +9779,15 @@ msgstr "dinamik" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Sıra uzunluğu" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Sıra boyu" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9832,16 +9841,16 @@ msgstr "Yeni sahe elave et" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "Sisteme Giriş Me'lumatı" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Yer istifadesi" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektiv" @@ -9882,7 +9891,7 @@ msgstr "" msgid "Move column" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9891,11 +9900,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:145 msgid "Transformation options" msgstr "Transformasiya variantları" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9907,36 +9916,36 @@ msgstr "" "quote (\"'\") amongst those values, backslashes it (for example '\\\\xyz' or " "'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Heç biri" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Sonra: %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10138,7 +10147,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." @@ -10450,30 +10459,30 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10481,7 +10490,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10489,24 +10498,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s bazası müveffeqiyyetle leğv edildi." msgstr[1] "%s bazası müveffeqiyyetle leğv edildi." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Me'lumat Bazası Statistikaları" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Statistikaları Aktivleşdir" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10579,50 +10588,50 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10631,123 +10640,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Me'lumat bazası seç" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tam metn (Fulltext)" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Sadece quruluş" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Sadece quruluş" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10755,154 +10764,154 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Sorğu tipi" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Genişletilmiş girişli" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Cedvelleri göster" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Runtime Me'lumatı" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Sehife başına düşen setir sayı" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Qurucu" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolu deyişdirme" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Cedvelleri göster" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Cedvelleri göster" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Sorğu tipi" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funksiya" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10910,117 +10919,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Variantlar" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL server %sdir işlemektedir. Server %s-de açılmışdır." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Alındı" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "Nömre" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komanda Tipi" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11028,78 +11037,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11107,7 +11116,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11115,42 +11124,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11158,33 +11167,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11193,243 +11202,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Faylın Charset-i:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11437,99 +11446,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11537,18 +11546,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11556,69 +11565,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Sorğu tipi" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şen" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Yeni sahe elave et" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11627,7 +11636,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11635,18 +11644,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11654,11 +11663,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11666,89 +11675,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy msgid "Preset chart" msgstr "Cedveli yeniden adlandır" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Yeni İstifadeçi elave Et" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL sorğusu" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Sıra Statistikası" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Hamısını Seç" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Sorğu tipi" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11756,7 +11765,7 @@ msgid_plural "%d seconds" msgstr[0] "saniyede" msgstr[1] "saniyede" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11876,19 +11885,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Server Deyişenleri Ve Variantları" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessiya deyeri" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Qlobal deyer" @@ -12180,44 +12189,44 @@ msgstr "" msgid "Wrong data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL result" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Qurucu" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy msgid "The columns have been moved successfully." msgstr "The selected users have been deleted successfully." @@ -12374,16 +12383,16 @@ msgstr "Yeni sahe elave et" msgid "Index name:" msgstr "İndex adı :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "İndex tipi :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse  %s sütun elave et" @@ -12552,38 +12561,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server versiyası" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Server versiyası" @@ -12941,8 +12950,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13070,8 +13079,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/be.po b/po/be.po index e06c1a9033..0d5dd512c9 100644 --- a/po/be.po +++ b/po/be.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian \n" -"Language: be\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\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Старонка:" @@ -41,36 +41,36 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Пошук" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Пошук" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Панеслася" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Імя ключа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Апісаньне" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" @@ -119,18 +119,18 @@ msgstr "База дадзеных %1$s створаная." msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,7 +138,7 @@ msgstr "Камэнтар да табліцы" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -146,12 +146,12 @@ msgstr "Камэнтар да табліцы" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Назвы калёнак" msgid "Type" msgstr "Тып" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Тып" msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Нуль" msgid "Default" msgstr "Па змоўчаньні" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Па змоўчаньні" msgid "Links to" msgstr "Зьвязаная з" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Зьвязаная з" msgid "Comments" msgstr "Камэнтары" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Камэнтары" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Так" @@ -276,35 +276,35 @@ msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Выбраць усё" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -316,12 +316,12 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -331,14 +331,14 @@ msgstr "Табліца" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Радкі" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Памер" @@ -351,7 +351,7 @@ msgstr "выкарыстоўваецца" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Створаная" @@ -359,7 +359,7 @@ msgstr "Створаная" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Апошняе абнаўленьне" @@ -367,7 +367,7 @@ msgstr "Апошняе абнаўленьне" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Апошняя праверка" @@ -383,7 +383,7 @@ msgstr[1] "%s табліц(ы)" msgid "You have to choose at least one column to display" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -419,9 +419,9 @@ msgstr "Праверыць табліцу" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "База дадзеных" @@ -441,70 +441,70 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Стан" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Дзеяньне" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Паказаць" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Выдаліць" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "База дадзеных" @@ -524,12 +524,12 @@ msgstr "Дадзеныя выбранага тыпу экспартаваньн msgid "Bad parameters!" msgstr "Дадаць новае поле" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -542,7 +542,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." @@ -552,137 +552,140 @@ msgstr "Дамп захаваны ў файл %s." msgid "Invalid export type" msgstr "Тып экспарту" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Дадаць новае поле" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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 "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " -"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" +"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: import.php:400 +#: import.php:404 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 " @@ -692,27 +695,27 @@ msgstr "" "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " "канфігурацыяй PHP. Гл. FAQ 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -720,7 +723,7 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: import.php:513 +#: import.php:517 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." @@ -729,9 +732,9 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запыт быў пасьпяхова выкананы" @@ -745,7 +748,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." @@ -755,7 +758,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя." msgid "Do you really want to execute \"%s\"?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -805,7 +808,7 @@ msgstr "Дадаць новае поле" msgid "Edit Index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -864,26 +867,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Выбар сэрвэра" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL-запыт" @@ -894,24 +897,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -933,7 +936,7 @@ msgstr "Выбар сэрвэра" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Працэсы" @@ -953,7 +956,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Статыстыка радку" @@ -1004,13 +1007,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КiБ" @@ -1072,32 +1075,32 @@ msgstr "" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Падлучэньні" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЭіБ" @@ -1113,11 +1116,11 @@ msgstr "%s табліц(ы)" msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1144,12 +1147,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Няма" @@ -1249,7 +1252,7 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1341,7 +1344,7 @@ msgstr "Тлумачыць SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Час" @@ -1450,8 +1453,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" @@ -1709,12 +1712,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Захаваць" @@ -1780,8 +1783,8 @@ msgstr "Дзеяньні з вынікамі запытаў" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ігнараваць" @@ -1891,7 +1894,7 @@ msgstr "Паказаныя запісы" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Згенэраваць" @@ -2015,27 +2018,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2043,37 +2046,37 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Сьн" @@ -2122,32 +2125,32 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Суб" @@ -2283,16 +2286,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "у сэкунду" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "у хвіліну" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "у гадзіну" @@ -2309,7 +2312,7 @@ msgstr "Максымальны памер: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Дакумэнтацыя" @@ -2332,14 +2335,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Памылка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-запыт" @@ -2357,87 +2360,87 @@ msgstr "SQL-запыт" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Выканаць запыт" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Абнавіць" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Праверыць SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Прафіляваньне" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ндз" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Працэдуры" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2445,28 +2448,28 @@ msgctxt "First page" msgid "Begin" msgstr "Першая старонка" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Наступная старонка" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2474,107 +2477,107 @@ msgctxt "Last page" msgid "End" msgstr "Апошняя старонка" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Уставіць" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Прагляд" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Апэрацыі" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Ачысьціць" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Друк" @@ -2591,102 +2594,102 @@ msgstr "" msgid "Font size" msgstr "Памер шрыфта" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "прамы" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "адваротны" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Парадак" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Крытэр" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Дадаць/выдаліць радок крытэру" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Абнавіць запыт" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Выкарыстоўваць табліцы" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Або" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "І" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Уставіць" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Выдаліць" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Зьмяніць" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "прынамсі адно з словаў" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "усе словы" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "дакладную фразу" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "рэгулярны выраз" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Вынікі пошуку \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2694,7 +2697,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Агулам: %s супадзеньняў" msgstr[1] "Агулам: %s супадзеньняў" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2702,49 +2705,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Выдаліць" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Пошук у базе дадзеных" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Знайсьці:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Словы, падзеленыя прагалам (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "У табліцы(ах):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2801,8 +2804,8 @@ msgstr "Выканаць запыт з закладак" msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2887,7 +2890,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Спыніць" @@ -2904,11 +2907,11 @@ msgstr "па запыту" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2918,7 +2921,7 @@ msgstr "Паказаныя запісы" msgid "total" msgstr "усяго" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" @@ -2929,7 +2932,7 @@ msgstr "Запыт выконваўся %01.4f сэк" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "З адзначанымі:" @@ -2939,8 +2942,8 @@ msgstr "З адзначанымі:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Адзначыць усё" @@ -2981,17 +2984,17 @@ msgstr "Сувязь ня знойдзеная" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2999,37 +3002,37 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3038,68 +3041,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Індэкс ня вызначаны!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Індэксы" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Супастаўленьне" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Камэнтар" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Першасны ключ быў выдалены" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Індэкс %s быў выдалены" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3110,12 +3113,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Базы дадзеных" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сэрвэр" @@ -3185,18 +3188,18 @@ msgstr "Карыстальнік" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Двайковы лог" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Рэплікацыя" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Зьменныя" @@ -3341,8 +3344,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функцыя" @@ -3352,11 +3355,11 @@ msgstr "Функцыя" msgid "Operator" msgstr "Апэратар" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Значэньне" @@ -3366,68 +3369,68 @@ msgstr "Значэньне" msgid "Table Search" msgstr "Пошук" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Уставіць" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Выбраць палі (прынамсі адно):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Колькасьць радкоў на старонку" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Парадак прагляду:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL-запыт" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "Пашырэньне PHP" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3502,14 +3505,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3761,7 +3764,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Табліц" @@ -3775,12 +3778,12 @@ msgstr "Табліц" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Дадзеныя" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -3898,7 +3901,7 @@ msgstr "" msgid "Closed" msgstr "Незакрытае двукосьсе" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4046,22 +4049,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Скінуць" @@ -4344,7 +4347,7 @@ msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Фармат" @@ -4468,7 +4471,7 @@ msgstr "Ключ меткі" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-тып" @@ -4509,7 +4512,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Зваротнае двукосьсе ў імёнах табліц і палёў" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Рэжым сумяшчальнасьці SQL" @@ -6049,10 +6052,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6313,7 +6316,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6321,50 +6324,58 @@ msgid "" "configured)." msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сэрвэр не адказвае" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Падрабязьней..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым " "канфігурацыйным файле." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Зьмяніць пароль" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Без пароля" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Пацьверджаньне" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Хэшаваньне паролю" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6522,12 +6533,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -6619,75 +6630,75 @@ msgstr "Стварыць сувязь" msgid "authored on %1$s by %2$s" msgstr "Стварыць сувязь" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Фармат імпартаванага файла" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Немагчыма залагавацца на сэрвэр MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Імпартаваць файл" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6781,71 +6792,71 @@ msgstr "" "Памер буфэру ў памяці, які InnoDB выкарыстоўвае для кэшаваньня дадзеных і " "індэксаў табліц." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Стан InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Выкарыстаньне пулу буфэру" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "старонак" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Вольных старонак" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Брудных старонак" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Старонак з дадзенымі" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Скінуць кэш старонак" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Занятых старонак" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Фіксаваныя старонкі" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Актыўнасьць пулу буфэру" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Запыты чытаньня" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Запытаў запісу" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Пропускаў чытаньня" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Затрымак запісу" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Пропускаў чытаньня ў %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Затрымак запісу ў %" @@ -7080,8 +7091,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7098,131 +7109,131 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Тып экспарту" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Схаваць" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Двайковы" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7276,7 +7287,7 @@ msgstr "" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7570,7 +7581,7 @@ msgstr "Опцыі табліцы" msgid "Rename table to" msgstr "Перайменаваць табліцу ў" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" @@ -7691,8 +7702,8 @@ msgstr "Запрашаем у %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7771,21 +7782,21 @@ msgstr "Няправільны лагін/пароль. У доступе адм msgid "Can not find signon authentication script:" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Файл %s ня ўтрымлівае ніякага ідэнтыфікатара ключа" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Дзейны ключ аўтэнтыфікацыі не падключаны" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Аўтэнтыфікацыя..." @@ -7951,20 +7962,21 @@ msgstr "Даступныя MIME-тыпы" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Час стварэньня" @@ -8209,7 +8221,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Імя табліцы" @@ -8498,7 +8510,7 @@ msgstr "Стварэньне PDF-файлаў" msgid "Displaying Column Comments" msgstr "Паказваць камэнтары калёнак" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" @@ -8566,7 +8578,7 @@ msgstr "Зьняць усе адзнакі" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8577,8 +8589,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8601,31 +8613,31 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Зьменная" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID сэрвэра" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Любы карыстальнік" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8634,34 +8646,34 @@ msgstr "Любы карыстальнік" msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Згенэраваць пароль" @@ -8729,7 +8741,7 @@ msgstr "Падрабязьней..." msgid "Event name" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Тып падзеі" @@ -9130,7 +9142,7 @@ msgstr "У базе дадзеных табліц ня выяўлена." msgid "There are no events to display." msgstr "Праверыць табліцу" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9140,7 +9152,7 @@ msgstr "Праверыць табліцу" msgid "The %s table doesn't exist!" msgstr "Табліцы \"%s\" не існуе!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9189,101 +9201,101 @@ msgstr "Атрыбуты" msgid "Extra" msgstr "Дадаткова" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Стварыць новую старонку" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аўтаматычнае разьмяшчэньне" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Выбраць усё" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Выберыце табліцу(ы)" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Назвы калёнак" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Рэляцыйная схема" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Паказаць сетку" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Паказаць колер" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Паказаць разьмернасьць табліц" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Паказаць усе табліцы аднолькавай шырыні?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Краявід" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Партрэт" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Створаная" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Памер паперы" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9291,7 +9303,7 @@ msgstr "" "Бягучая старонка ўтрымлівае спасылкі на табліцы, якія больш не існуюць. Ці " "жадаеце вы выдаліць гэтыя спасылкі?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Паказаць папярэдні прагляд" @@ -9602,7 +9614,7 @@ msgstr "Карыстальнікі з правамі доступу да "% #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Карыстальнік" @@ -9746,8 +9758,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. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " @@ -9814,11 +9826,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -9916,7 +9928,7 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" @@ -9929,12 +9941,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" @@ -9966,14 +9978,14 @@ msgid "Column %s has been dropped" msgstr "Табліца %s была выдаленая" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Першасны" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Індэкс" @@ -9983,7 +9995,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Поўнатэкстэкставае" @@ -10011,7 +10023,7 @@ msgstr "Прагляд залежнасьцяў" msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -10023,7 +10035,7 @@ msgstr "Трэба дадаць прынамсі адно поле." msgid "Add column" msgstr "Дадаць %s новыя палі" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -10048,15 +10060,15 @@ msgstr "Пасьля %s" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статыстыка радку" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "дынамічны" @@ -10064,15 +10076,15 @@ msgstr "дынамічны" msgid "partitioned" msgstr "падзеленая на сэкцыі" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Даўжыня радка" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Памер радка" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10126,15 +10138,15 @@ msgstr "Дадаць новае поле" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Інфармацыя" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Эфэктыўнасьць" @@ -10175,7 +10187,7 @@ msgstr "" msgid "Move column" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10184,11 +10196,11 @@ msgstr "" "Для атрыманьня сьпісу даступных опцыяў трансфармацыі і пераўтварэньняў іхных " "MIME-тыпаў, націсьніце на %sапісаньні пераўтварэньняў%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опцыі пераўтварэньня" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10200,36 +10212,36 @@ msgstr "" "або апостраф (\"'\") у гэтых значэньнях, устаўце зваротны слэш перад імі " "(напрыклад, '\\\\xyz' або 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Як вызначана:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Пасьля %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Азначэньне PARTITION" @@ -10445,7 +10457,7 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" @@ -10761,29 +10773,29 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файлы" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Імя логу" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Пазыцыя" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Першапачатковая пазыцыя" @@ -10791,7 +10803,7 @@ msgstr "Першапачатковая пазыцыя" msgid "Character Sets and Collations" msgstr "Раскладкі і супастаўленьні" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10799,24 +10811,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базаў дадзеных былі пасьпяхова выдаленыя." msgstr[1] "%s базаў дадзеных былі пасьпяхова выдаленыя." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статыстыка базаў дадзеных" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Уключыць статыстыку" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10889,51 +10901,51 @@ msgstr "Прывілеі былі пасьпяхова перазагружан msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10942,279 +10954,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Калі ласка, выберыце базу дадзеных" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Поўнатэкстэкставае" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Поўнатэкстэкставае" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Толькі структуру" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Толькі структуру" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Апрацоўнік" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Кэш запытаў" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Патокі" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Часовыя дадзеныя" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Адкладзеныя ўстаўкі" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Кэш ключоў" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Аб'яднаньні" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Сартаваньне" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Каардынатар перакладу" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Скінуць (закрыць) усе табліцы" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Паказаць залежныя сэрвэры" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Скінуць кэш запытаў" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Бягучая інфармацыя" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Колькасьць палёў" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Абнавіць" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Файлы" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не зьмяняць пароль" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Сувязі" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тып запыту" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функцыі" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11222,57 +11234,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Выразы" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Гэты сэрвэр MySQL працуе %s. Ён быў запушчаны %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11280,47 +11292,47 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Атрымана" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Спынена" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Каманда" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11330,17 +11342,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11352,11 +11364,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11364,7 +11376,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11372,7 +11384,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11381,23 +11393,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11407,7 +11419,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11418,7 +11430,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11426,7 +11438,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11436,7 +11448,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11444,7 +11456,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11456,7 +11468,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11468,37 +11480,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11508,7 +11520,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11521,11 +11533,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11534,7 +11546,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11542,11 +11554,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11554,7 +11566,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11568,55 +11580,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11624,35 +11636,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11660,55 +11672,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11716,7 +11728,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11724,7 +11736,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11734,17 +11746,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11754,26 +11766,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11784,17 +11796,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11802,39 +11814,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11847,7 +11859,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11855,19 +11867,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11875,13 +11887,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11890,7 +11902,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11898,17 +11910,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11916,13 +11928,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11930,14 +11942,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11947,25 +11959,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11977,7 +11989,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11987,11 +11999,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12003,70 +12015,70 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Суб" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Дадаць новае поле" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12075,7 +12087,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12083,18 +12095,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12102,11 +12114,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12114,92 +12126,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Перайменаваць базу дадзеных у" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Выберыце табліцу(ы)" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Некарэктнае імя табліцы" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Дадаць новага карыстальніка" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL-запыт" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Статыстыка радку" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Выбраць усё" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тып запыту" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12207,7 +12219,7 @@ msgid_plural "%d seconds" msgstr[0] "у сэкунду" msgstr[1] "у сэкунду" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12329,19 +12341,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Налады і зьменныя сэрвэра" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Значэньне сэсіі" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глябальнае значэньне" @@ -12636,44 +12648,44 @@ msgstr "" msgid "Wrong data" msgstr "Базы дадзеных адсутнічаюць" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-вынік" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Створаны" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12833,17 +12845,17 @@ msgstr "Дадаць новае поле" msgid "Index name:" msgstr "Імя індэкса:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" мусіць быць імем першаснага ключа і толькі яго!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тып індэкса:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Дадаць да індэкса  %s калёнку(і)" @@ -13015,38 +13027,38 @@ msgstr "Тып экспарту" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Стварыць сувязь" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" @@ -13413,8 +13425,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13547,8 +13559,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/be@latin.po b/po/be@latin.po index a5733b490e..96fac2af79 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:41+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Staronka:" @@ -41,36 +41,36 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Pošuk" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Pošuk" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Paniesłasia" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Imia kluča" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Apisańnie" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" @@ -119,18 +119,18 @@ msgstr "Baza dadzienych %1$s stvoranaja." msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,7 +138,7 @@ msgstr "Kamentar da tablicy" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -146,12 +146,12 @@ msgstr "Kamentar da tablicy" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Nazvy kalonak" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Typ" msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Nul" msgid "Default" msgstr "Pa zmoŭčańni" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Pa zmoŭčańni" msgid "Links to" msgstr "Źviazanaja z" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Źviazanaja z" msgid "Comments" msgstr "Kamentary" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Kamentary" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Tak" @@ -276,35 +276,35 @@ msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Vybrać usio" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -316,12 +316,12 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -331,14 +331,14 @@ msgstr "Tablica" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Radki" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Pamier" @@ -351,7 +351,7 @@ msgstr "vykarystoŭvajecca" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Stvoranaja" @@ -359,7 +359,7 @@ msgstr "Stvoranaja" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" @@ -367,7 +367,7 @@ msgstr "Apošniaje abnaŭleńnie" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Apošniaja pravierka" @@ -384,7 +384,7 @@ msgstr[2] "%s tablic(y)" msgid "You have to choose at least one column to display" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -419,9 +419,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza dadzienych" @@ -439,66 +439,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stan" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Dziejańnie" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Pakazać" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Vydalić" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -518,12 +518,12 @@ msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ faj msgid "Bad parameters!" msgstr "Dadać novaje pole" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -536,7 +536,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." @@ -547,136 +547,139 @@ msgstr "Damp zachavany ŭ fajł %s." msgid "Invalid export type" msgstr "Ekspart" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dadać novaje pole" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Dadać abmiežavańni" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Dadać novaha karystalnika" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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 "" -"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:400 +#: import.php:404 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 " @@ -686,27 +689,27 @@ msgstr "" "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " "kanfihuracyjaj PHP. Hł. FAQ 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -714,7 +717,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:513 +#: import.php:517 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." @@ -723,9 +726,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany" @@ -739,7 +742,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." @@ -749,7 +752,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja." msgid "Do you really want to execute \"%s\"?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -799,7 +802,7 @@ msgstr "Dadać novaje pole" msgid "Edit Index" msgstr "Redagavać nastupny radok" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -858,26 +861,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redagavać" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Vybar servera" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -889,24 +892,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -928,7 +931,7 @@ msgstr "Vybar servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Pracesy" @@ -948,7 +951,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -1000,13 +1003,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1068,32 +1071,32 @@ msgstr "" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Padłučeńni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1110,11 +1113,11 @@ msgstr "%s tablic(y)" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1141,12 +1144,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nijakaja" @@ -1246,7 +1249,7 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1340,7 +1343,7 @@ msgstr "Tłumačyć SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Čas" @@ -1452,8 +1455,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" @@ -1716,12 +1719,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Zachavać" @@ -1789,8 +1792,8 @@ msgstr "Dziejańni z vynikami zapytaŭ" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignaravać" @@ -1899,7 +1902,7 @@ msgstr "Pakazanyja zapisy" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Zgieneravać" @@ -2024,27 +2027,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2052,37 +2055,37 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Śn" @@ -2131,32 +2134,32 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sub" @@ -2292,16 +2295,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "u sekundu" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "u chvilinu" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "u hadzinu" @@ -2318,7 +2321,7 @@ msgstr "Maksymalny pamier: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dakumentacyja" @@ -2341,14 +2344,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Pamyłka" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-zapyt" @@ -2366,87 +2369,87 @@ msgstr "SQL-zapyt" msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Vykanać zapyt" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Abnavić" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Pravieryć SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Prafilavańnie" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ndz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Pracedury" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2454,28 +2457,28 @@ msgctxt "First page" msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Nastupnaja staronka" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2483,108 +2486,108 @@ msgctxt "Last page" msgid "End" msgstr "Apošniaja staronka" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ustavić" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Prahlad" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Aperacyi" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Ačyścić" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Druk" @@ -2601,102 +2604,102 @@ msgstr "" msgid "Font size" msgstr "Pamier šryfta" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "pramy" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "advarotny" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Paradak" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kryter" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dadać/vydalić radok kryteru" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Abnavić zapyt" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Vykarystoŭvać tablicy" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Abo" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "I" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ustavić" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Vydalić" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Źmianić" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "usie słovy" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "dakładnuju frazu" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "rehularny vyraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Vyniki pošuku \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2705,7 +2708,7 @@ msgstr[0] "Ahułam: %s supadzieńniaŭ" msgstr[1] "Ahułam: %s supadzieńniaŭ" msgstr[2] "Ahułam: %s supadzieńniaŭ" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2714,49 +2717,49 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Vydalić" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Pošuk u bazie dadzienych" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Znajści:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Słovy, padzielenyja prahałam (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "U tablicy(ach):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2810,8 +2813,8 @@ msgstr "Vykanać zapyt z zakładak" msgid "Sort by key" msgstr "Sartavać pa klučy" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2896,7 +2899,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Spynić" @@ -2913,11 +2916,11 @@ msgstr "pa zapytu" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2927,7 +2930,7 @@ msgstr "Pakazanyja zapisy" msgid "total" msgstr "usiaho" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" @@ -2938,7 +2941,7 @@ msgstr "Zapyt vykonvaŭsia %01.4f sek" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Z adznačanymi:" @@ -2948,8 +2951,8 @@ msgstr "Z adznačanymi:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Adznačyć usio" @@ -2991,17 +2994,17 @@ msgstr "Suviaź nia znojdzienaja" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3009,38 +3012,38 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3049,68 +3052,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Indeks nia vyznačany!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikalnaje" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Ścisnutaja" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Supastaŭleńnie" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kamentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Pieršasny kluč byŭ vydaleny" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s byŭ vydaleny" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3121,12 +3124,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bazy dadzienych" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3196,18 +3199,18 @@ msgstr "Karystalnik" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Dvajkovy łog" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikacyja" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Źmiennyja" @@ -3352,8 +3355,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcyja" @@ -3363,11 +3366,11 @@ msgstr "Funkcyja" msgid "Operator" msgstr "Aperatar" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Značeńnie" @@ -3377,68 +3380,68 @@ msgstr "Značeńnie" msgid "Table Search" msgstr "Pošuk" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ustavić" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vybrać pali (prynamsi adno):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Kolkaść radkoŭ na staronku" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Paradak prahladu:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "in query" msgid "Additional search criteria" msgstr "pa zapytu" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3513,14 +3516,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3773,7 +3776,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tablic" @@ -3787,12 +3790,12 @@ msgstr "Tablic" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dadzienyja" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -3912,7 +3915,7 @@ msgstr "" msgid "Closed" msgstr "Niezakrytaje dvukośsie" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4060,22 +4063,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Skinuć" @@ -4356,7 +4359,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Farmat" @@ -4477,7 +4480,7 @@ msgstr "Kluč mietki" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-typ" @@ -4517,7 +4520,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Zvarotnaje dvukośsie ŭ imionach tablic i paloŭ" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Režym sumiaščalnaści SQL" @@ -6026,10 +6029,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6295,7 +6298,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6303,50 +6306,58 @@ msgid "" "configured)." msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server nie adkazvaje" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Padrabiaźniej..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym " "kanfihuracyjnym fajle." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Źmianić parol" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Biez parola" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Paćvierdžańnie" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Chešavańnie parolu" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6503,12 +6514,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -6601,77 +6612,77 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "authored on %1$s by %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Farmat impartavanaha fajła" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Niemahčyma załahavacca na server MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Impartavać fajł" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6765,71 +6776,71 @@ msgstr "" "Pamier buferu ŭ pamiaci, jaki InnoDB vykarystoŭvaje dla kešavańnia " "dadzienych i indeksaŭ tablic." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stan InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Vykarystańnie pułu buferu" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "staronak" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Volnych staronak" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Brudnych staronak" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Staronak z dadzienymi" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Skinuć keš staronak" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Zaniatych staronak" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Fiksavanyja staronki" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktyŭnaść pułu buferu" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Zapyty čytańnia" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Zapytaŭ zapisu" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Propuskaŭ čytańnia" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Zatrymak zapisu" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Propuskaŭ čytańnia ŭ %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Zatrymak zapisu ŭ %" @@ -7068,8 +7079,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7086,131 +7097,131 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Bazy dadzienych adsutničajuć" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Niama tablic" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Schavać" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Dvajkovy" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Pačać ustaŭku znoŭ z %s-ha radku" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7264,7 +7275,7 @@ msgstr "" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7559,7 +7570,7 @@ msgstr "Opcyi tablicy" msgid "Rename table to" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" @@ -7681,8 +7692,8 @@ msgstr "Zaprašajem u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7762,21 +7773,21 @@ msgstr "Niapravilny łahin/parol. U dostupie admoŭlena." msgid "Can not find signon authentication script:" msgstr "Aŭtentyfikacyja..." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Fajł %s nia ŭtrymlivaje nijakaha identyfikatara kluča" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Aparatnaja aŭtentyfikacyja skončyłasia niaŭdała" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Aŭtentyfikacyja..." @@ -7943,20 +7954,21 @@ msgstr "Dastupnyja MIME-typy" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Chost" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Čas stvareńnia" @@ -8201,7 +8213,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Imia tablicy" @@ -8313,8 +8325,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()." @@ -8493,7 +8505,7 @@ msgstr "Stvareńnie PDF-fajłaŭ" msgid "Displaying Column Comments" msgstr "Pakazvać kamentary kalonak" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" @@ -8561,7 +8573,7 @@ msgstr "Źniać usie adznaki" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8572,8 +8584,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8593,31 +8605,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Źmiennaja" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID servera" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Luby karystalnik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8626,34 +8638,34 @@ msgstr "Luby karystalnik" msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Zgieneravać parol" @@ -8722,7 +8734,7 @@ msgstr "Padrabiaźniej..." msgid "Event name" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Typ padziei" @@ -9124,7 +9136,7 @@ msgstr "U bazie dadzienych tablic nia vyjaŭlena." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9134,7 +9146,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Tablicy \"%s\" nie isnuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9183,101 +9195,101 @@ msgstr "Atrybuty" msgid "Extra" msgstr "Dadatkova" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Stvaryć novuju staronku" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Aŭtamatyčnaje raźmiaščeńnie" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Vybrać usio" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Vybierycie tablicu(y)" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nazvy kalonak" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relacyjnaja schiema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Pakazać sietku" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Pakazać koler" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Pakazać raźmiernaść tablic" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Pakazać usie tablicy adnolkavaj šyryni?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Krajavid" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Partret" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Stvoranaja" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Pamier papiery" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9285,7 +9297,7 @@ msgstr "" "Biahučaja staronka ŭtrymlivaje spasyłki na tablicy, jakija bolš nie isnujuć. " "Ci žadajecie vy vydalić hetyja spasyłki?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Pakazać papiaredni prahlad" @@ -9597,7 +9609,7 @@ msgstr "Karystalniki z pravami dostupu da \"%s\"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Karystalnik" @@ -9741,8 +9753,8 @@ msgstr "Karystalniki" 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ŭ, " @@ -9805,11 +9817,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -9905,10 +9917,10 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" @@ -9921,12 +9933,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" @@ -9957,14 +9969,14 @@ msgid "Column %s has been dropped" msgstr "Tablica %s była vydalenaja" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Pieršasny" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9974,7 +9986,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" @@ -10002,7 +10014,7 @@ msgstr "Prahlad zaležnaściaŭ" msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -10014,7 +10026,7 @@ msgstr "Treba dadać prynamsi adno pole." msgid "Add column" msgstr "Dadać %s novyja pali" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -10039,15 +10051,15 @@ msgstr "Paśla %s" msgid "Create an index on  %s columns" msgstr "Stvaryć indeks na %s kalonkach" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statystyka radku" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamičny" @@ -10055,15 +10067,15 @@ msgstr "dynamičny" msgid "partitioned" msgstr "padzielenaja na sekcyi" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Daŭžynia radka" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Pamier radka" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10117,15 +10129,15 @@ msgstr "Dadać novaje pole" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Infarmacyja" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektyŭnaść" @@ -10166,7 +10178,7 @@ msgstr "" msgid "Move column" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10175,11 +10187,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:145 msgid "Transformation options" msgstr "Opcyi pieraŭtvareńnia" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10191,36 +10203,36 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nijakaja" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Jak vyznačana:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Paśla %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" @@ -10438,7 +10450,7 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" @@ -10754,29 +10766,29 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Fajły" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Imia łogu" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pazycyja" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Pieršapačatkovaja pazycyja" @@ -10784,7 +10796,7 @@ msgstr "Pieršapačatkovaja pazycyja" msgid "Character Sets and Collations" msgstr "Raskładki i supastaŭleńni" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10793,24 +10805,24 @@ msgstr[0] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[1] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[2] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statystyka bazaŭ dadzienych" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Uklučyć statystyku" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10882,51 +10894,51 @@ msgstr "Pryvilei byli paśpiachova pierazahružanyja." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10935,275 +10947,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tolki strukturu" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tolki strukturu" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Apracoŭnik" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Keš zapytaŭ" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Patoki" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Časovyja dadzienyja" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Adkładzienyja ŭstaŭki" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Keš klučoŭ" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Ab'jadnańni" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sartavańnie" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Kaardynatar pierakładu" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Skinuć (zakryć) usie tablicy" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Pakazać zaležnyja servery" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Skinuć keš zapytaŭ" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Biahučaja infarmacyja" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Kolkaść paloŭ" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Abnavić" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie źmianiać parol" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suviazi" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Typ zapytu" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcyi" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11211,56 +11223,56 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Vyrazy" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Hety server MySQL pracuje %s. Jon byŭ zapuščany %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11268,47 +11280,47 @@ msgstr "" "Na zahružanym servery bajtavyja ličylniki mohuć pieraskokvać koła, tamu " "statystyka, jakuju pakazvaje MySQL-server, moža być niapravilnaj." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Atrymana" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Kamanda" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11318,17 +11330,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Kolkaść tranzakcyjaŭ, jakija vykarystoŭvali časovy dvajkovy keš zapytaŭ." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11340,11 +11352,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11352,7 +11364,7 @@ msgstr "" "Kolkaść časovych tablic, raźmieščanych u pamiaci, jakija byli aŭtamatyčna " "stvoranyja serveram padčas vykanańnia vyrazaŭ." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11360,7 +11372,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11369,23 +11381,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11395,7 +11407,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11406,7 +11418,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11415,7 +11427,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11425,7 +11437,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11433,7 +11445,7 @@ msgstr "" "Kolkaść zapytaŭ čytańnia papiaredni radok u klučavym paradku. Hety metad " "čytańnia vykarystoŭvajecca pieravažna dla aptymizacyi ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11446,7 +11458,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11458,37 +11470,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Kolkaść staronak bufernaha pułu, na jakija byŭ atrymany zapyt na skid." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11498,7 +11510,7 @@ msgstr "" "staronki, jakija ŭ biahučy momant čytajucca ci zapisvajucca abo jakija nia " "mohuć być skinutyja ci vydalenyja z-za peŭnaj pryčyny." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11511,11 +11523,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11524,7 +11536,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11532,11 +11544,11 @@ msgstr "" "Kolkaść paśladoŭnych papiarednich čytańniaŭ, zroblenych InnoDB. Heta " "adbyvajecca, kali InnoDB vykonvaje paśladoŭny poŭny prahlad tablicy." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11544,7 +11556,7 @@ msgstr "" "Kolkaść lagičnych čytańniaŭ, jakija InnoDB nie zmahła adnavić z bufernaha " "pułu, a tamu zrabiła adnastaronkavaje čytańnie." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11558,55 +11570,55 @@ msgstr "" "kamputar padličvaje kolkaść takich čakańniaŭ. Kali pamier buferu byŭ " "vyznačany pravilna, hetaje značeńnie musić być maleńkim." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Kolkaść padvojnych zapisaŭ, jakija byli vykananyja, i kolkaść staronak, " "jakija byli zapisanyja dla hetaj mety." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11614,35 +11626,35 @@ msgstr "" "Kolkaść vypadkaŭ čakańnia z-za taho, što bufer łogu byŭ zanadta mały, i tamu " "daviałosia čakać, pakul jon nie ačyścicca." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11651,54 +11663,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" "Kolkaść blakavańniaŭ radkoŭ, čakańnie jakich adbyvajecca na biahučy momant." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Siaredni čas atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ahulny čas čakańnia atrymańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Maksymalny čas atramańnia mahčymaści blakavańnia radku, u milisekundach." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Kolkaść razoŭ, kali davodziłasia čakać blakavańnie radku." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11706,7 +11718,7 @@ msgstr "" "Kolkaść blokaŭ u kešy klučoŭ, jakija byli źmienienyja, ale jašče nie byli " "skinutyja na dysk. Vykarystoŭvajecca jak značeńnie Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11714,7 +11726,7 @@ msgstr "" "Kolkaść niavykarystanych blokaŭ u kešy klučoŭ. Hetaje značeńnie možna " "vykarystoŭvać dla vyznačeńnia stupieni vykarystańnia kešu klučoŭ." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11724,17 +11736,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Kolkaść zapytaŭ na čytańnie bloku klučoŭ z kešu." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11744,26 +11756,26 @@ msgstr "" "vialikaje, značeńnie key_buffer_size, vidać, vielmi małoje. Kolkaść " "promachaŭ u keš možna vyličyć jak Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Kolkaść zapytaŭ na zapis bloku klučoŭ u keš." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Kolkaść fizyčnych zapisaŭ bloku klučoŭ na dysk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11774,17 +11786,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Kolkaść radkoŭ dla zapisu, adkładzienych zapytami INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11792,39 +11804,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Kolkaść adkrytych patokaŭ (vykarystoŭvajucca pieravažna dla łahavańnia)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11837,7 +11849,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11845,19 +11857,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11865,13 +11877,13 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija nie vykarystoŭviajuć indeksy. Kali hetaje " "značeńnie nia roŭnaje 0, varta pravieryć indeksy ŭ tablicach." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali pošuk pa mascy ŭ metavaj " "tablicy." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11880,7 +11892,7 @@ msgstr "" "kluča paśla kožnaha radka. (Kali hetaje značeńnie nia roŭnaje 0, varta " "pravieryć indeksy ŭ tablicach.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11888,17 +11900,17 @@ msgstr "" "Kolkaść ab'jadnańniaŭ, jakija vykarystoŭvali spałučeńni paloŭ u pieršaj " "tablicy. (Zvyčajna nie krytyčna, navat kali hetaje značeńnie vialikaje.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Kolkaść ab'jadnańniaŭ, jakija praviali poŭny prahlad pieršaj tablicy." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Kolkaść časovych tablic, jakija ŭ biahučy momant adkrytyja zaležnym SQL-" "patokam." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11906,13 +11918,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Hetaje značeńnie roŭnaje \"ON\", kali server źjaŭlajecca zaležnym i " "padłučanym da servera, jaki jaho kantraluje." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11920,14 +11932,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Kolkaść zapytaŭ, na vykanantnie jakich spatrebiłasia bolš, čym " "long_query_time sekundaŭ." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11937,25 +11949,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" "Kolkaść sartavańniaŭ, jakija byli zroblenyja z vykarystańniem niekalkich " "słupkoŭ." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Kolkaść sartavańniaŭ, jakija byli zroblenyja padčas prahladu tablicy." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Kolkaść razoŭ, kali blakavańnie tablicy było zroblenaje imhnienna." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11967,7 +11979,7 @@ msgstr "" "prablemy z pradukcyjnaściu, varta spačatku aptymizavać zapyty, a paśla abo " "padzialić tablicu abo tablicy, abo vykarystoŭvać replikacyju." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11977,11 +11989,11 @@ msgstr "" "jak Threads_created/Connections. Kali hetaje značeńnie pafarbavanaje ŭ " "čyrvony koler, varta pavialičyć značeńnie thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11993,68 +12005,68 @@ msgstr "" "thread_cache_size. (Zvyčajna, heta nie daje jakoha-niebudź zaŭvažnaha " "pavieličeńnia pradukcyjnaści, kali prysutničaje dobraja realizacyja patokaŭ.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dadać novaje pole" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dadać/vydalić kalonku kryteru" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12063,7 +12075,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12071,18 +12083,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12090,11 +12102,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12102,93 +12114,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pierajmienavać bazu dadzienych u" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Vybierycie tablicu(y)" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Niekarektnaje imia tablicy" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Dadać novaha karystalnika" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Statystyka radku" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Vybrać usio" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ zapytu" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12197,7 +12209,7 @@ msgstr[0] "u sekundu" msgstr[1] "u sekundu" msgstr[2] "u sekundu" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12319,19 +12331,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Nałady i źmiennyja servera" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Značeńnie sesii" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Hlabalnaje značeńnie" @@ -12619,44 +12631,44 @@ msgstr "" msgid "Wrong data" msgstr "Bazy dadzienych adsutničajuć" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-vynik" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Stvorany" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Mietka" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12815,16 +12827,16 @@ msgstr "Dadać novaje pole" msgid "Index name:" msgstr "Imia indeksa:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Typ indeksa:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dadać da indeksa %s kalonku(i)" @@ -12995,39 +13007,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -13398,8 +13410,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13534,8 +13546,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/bg.po b/po/bg.po index d857cf0c48..8f2af5b02d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:49+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Показване на всички" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Страница:" @@ -40,36 +40,36 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Търсене" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Търсене" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Изпълнение" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Име на ключ" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Използване тази стойност" @@ -120,18 +120,18 @@ msgstr "БД %1$s беше създадена." msgid "Database comment: " msgstr "Коментар към БД: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Коментари към таблицата" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kолона" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Kолона" msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Тип" msgid "Null" msgstr "Празно" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Празно" msgid "Default" msgstr "По подразбиране" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "По подразбиране" msgid "Links to" msgstr "Свързана към" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Свързана към" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Преглед на схема (дъмп) на БД" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "В БД няма таблици." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Маркиране всички" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Размаркиране всички" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Името на БД е празно!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "БД %1$s беше преименувана на %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "БД %1$s беше копирана като %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете " "защо натиснете %sтук%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Таблица" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Редове" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Размер" @@ -345,7 +345,7 @@ msgstr "ползва се в момента" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Дата на създаване" @@ -353,7 +353,7 @@ msgstr "Дата на създаване" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Последно обновление" @@ -361,7 +361,7 @@ msgstr "Последно обновление" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Последна проверка" @@ -376,7 +376,7 @@ msgstr[1] "%s таблици" msgid "You have to choose at least one column to display" msgstr "Изберете поне една колона за показване" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Превключване към %sвизуален строител%s" @@ -408,9 +408,9 @@ msgstr "Следени таблици" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "БД" @@ -428,66 +428,66 @@ msgstr "Съвременен" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Състояние" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Действие" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Показване" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Изтриване на проследената информация за таблицата" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Изтриване" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "активен" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "неактивен" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Версии" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Доклад за следенето" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Моментна снимка на структурата" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Непроследявани таблици" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Следене на таблица" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Дневник БД" @@ -503,12 +503,12 @@ msgstr "Избраният тип експорт трябва да бъде за msgid "Bad parameters!" msgstr "Грешни параметри!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за запазване на файла %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Web сървърът няма права за писане върху файла %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." @@ -530,115 +530,118 @@ msgstr "Схемата беше запазена във файл %s." msgid "Invalid export type" msgstr "Невалиден тип експорт" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Стойност за колона \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Използване на OpenStreetMaps като основен слой" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Добавяне на точка" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Външен пръстен" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Вътрешен пръстен" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Добавяне LineString" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Добавяне вътрешен пръстен" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Многоъгълник" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Добавяне многоъгълник" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Добавяне геометрия" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Изход" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Белязката беше изтрита." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -647,7 +650,7 @@ msgstr "" "Опитвате да заредите файл с неподдържана компресия (%s). Или поддръжката ѝ " "не е реализирана, или е забранена от конфигурацията." -#: import.php:400 +#: import.php:404 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 " @@ -657,30 +660,30 @@ msgstr "" "по-голям от разрешеното в конфигурацията на PHP. Вижте [a@./Documentation." "html#faq1_16@Documentation]ЧЗВ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Не може да бъде преобразуван знаковият набор на файла без библиотека за " "преобразуване на знакови набори" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Не могат да бъдат заредени разширенията за импорт, моля проверете " "инсталацията!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импортирането приключи успешно, бяха изпълнени %d заявки." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -688,7 +691,7 @@ msgstr "" "Времето за изчакване на скрипта изтече, ако искате да завършите импорта го " "пуснете отново и той ще си продължи." -#: import.php:513 +#: import.php:517 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." @@ -697,9 +700,9 @@ msgstr "" "обикновено означава, че phpMyAdmin няма да бъде в състояние да завърши този " "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL заявката беше изпълнена успешно" @@ -715,7 +718,7 @@ msgstr "" "phpMyAdmin е по-дружелюбен ако използвате браузър с поддържка на рамки." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." @@ -724,7 +727,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена." msgid "Do you really want to execute \"%s\"?" msgstr "Наистина ли искате да изпълните \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цяла БД!" @@ -764,7 +767,7 @@ msgstr "Добавяне индекс" msgid "Edit Index" msgstr "Редактиране индекс" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Добавяне %d колона(и) към индекс" @@ -814,24 +817,24 @@ msgstr "Затваряне" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Редакция" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Диаграма на трафик в реално време" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Диаграма на връзки/процеси в реално време" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Диаграма на заявки в реално време" @@ -841,24 +844,24 @@ msgstr "Статична информация" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Общо" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Друго" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -878,7 +881,7 @@ msgstr "Сървър трафик (в KiB)" msgid "Connections since last refresh" msgstr "Връзки след последното опресняване" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процеси" @@ -896,7 +899,7 @@ msgstr "Запитвания след последното опресняван msgid "Questions (executed statements by the server)" msgstr "Запитвания (изпълнени от сървъра заявки)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Статистика за заявките" @@ -942,13 +945,13 @@ msgstr "Системен swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -1000,32 +1003,32 @@ msgstr "Байта изпратени" msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Връзки" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЕБ" @@ -1039,11 +1042,11 @@ msgstr "%d таблица(и)" msgid "Questions" msgstr "Запитвания" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Настройки" @@ -1064,12 +1067,12 @@ msgid "Please add at least one variable to the series" msgstr "Моля добавете поне една променлива към сериите" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Няма" @@ -1169,7 +1172,7 @@ msgstr "Промяна настройки" msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Заглавие на диаграмата" @@ -1255,7 +1258,7 @@ msgstr "Обяснение на изхода" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Време" @@ -1350,8 +1353,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1562,12 +1565,12 @@ msgstr "Време за изпълнение на заявката" msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Зпазване" @@ -1626,8 +1629,8 @@ msgstr "Резултати от заявката" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Игнориране" @@ -1736,7 +1739,7 @@ msgstr "" msgid "Generate password" msgstr "Генериране парола" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Генериране" @@ -1835,63 +1838,63 @@ msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "дек" @@ -1929,32 +1932,32 @@ msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "сб" @@ -2069,16 +2072,16 @@ msgstr "Неочаквани знаци на ред %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Неочакван знак на ред %1$s. Очакван табулатор, но намерен \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "на секунда" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "на минута" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "на час" @@ -2095,7 +2098,7 @@ msgstr "Максимум: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документация" @@ -2118,14 +2121,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Грешка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL заявка" @@ -2143,210 +2146,210 @@ msgstr "SQL заявка" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Неуспешно свързване към SQL валидатора!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Изпълни заявката" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Опресняване" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Валидиране на SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Редакция на заявката на място" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Профилиране" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Липсващ параметър:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Предна" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Следваща" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Последна" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Показване БД "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, виж %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вмъкване" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Прелистване" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операции" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Папката, която сте указали за качване е недостъпна" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Изчистване" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Изпълнение" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Печат" @@ -2365,149 +2368,149 @@ msgstr "" msgid "Font size" msgstr "Размер шрифт" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Възходящо" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Низходящо" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Сортиране" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критерии" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Добавяне/изтриване ред по критерий" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Добавяне/изтриване колони" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Допълване заявка" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Използване таблиците" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Или" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "И" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Вмъкни" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Изтрий" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Промени" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL заявка към БД %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "поне една от думите" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "всички думи" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "точната фраза" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "като регулярен израз" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати от търсенето на \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Общо: %s съвпадение" msgstr[1] "Общо: %s съвпадения" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s съвпадение в таблица %2$s" msgstr[1] "%1$s съвпадения в таблица %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Изтриване" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Търсене в БД" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Намери:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Думите трябва да се разделят с интервал (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "В таблици:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "В колона:" @@ -2552,8 +2555,8 @@ msgstr "Заглавки всеки %s реда" msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2630,7 +2633,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Спиране" @@ -2649,8 +2652,8 @@ msgstr "в зявката" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 @@ -2661,7 +2664,7 @@ msgstr "Показване на записи" msgid "total" msgstr "общо" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" @@ -2672,7 +2675,7 @@ msgstr "Заявката отне %01.4f секунди" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Когато има отметка:" @@ -2682,8 +2685,8 @@ msgstr "Когато има отметка:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Маркиране всички" @@ -2721,42 +2724,42 @@ msgstr "Връзките не са намерени" msgid "Too many error messages, some are not displayed." msgstr "Твърде много съобщения за грешки, някои не са показани." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Файлът не е бил качен." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Изпратеният файл надхвърля директивата MAX_FILE_SIZE заложена във формата." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Подаденият файл беше само частично качен." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Липсва временна папка." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Неуспешно записване на файл на диска." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Качването на файлът беше спряно от разширение." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2764,11 +2767,11 @@ msgstr "" "Грешка при преместване на качения файл, виж [a@./Documentation." "html#faq1_11@Documentation]ЧЗВ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Грешка при преместване на качения файл." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Не може да бъде прочетен (преместен) качен файл." @@ -2777,66 +2780,66 @@ msgstr "Не може да бъде прочетен (преместен) кач msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими бисквитки." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Оттук нататък е необходим javascript" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Не е избран индекс!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Индекси" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Колация" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Коментар" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Главният ключ беше изтрит" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s беше изтрит" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2847,12 +2850,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "БД" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сървър" @@ -2920,18 +2923,18 @@ msgstr "Потребители" msgid "Synchronize" msgstr "Синхронизиране" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Двоичен дневник" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Репликация" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Променливи" @@ -3060,8 +3063,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3071,11 +3074,11 @@ msgstr "Функция" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Стойност" @@ -3083,62 +3086,62 @@ msgstr "Стойност" msgid "Table Search" msgstr "Търсене в таблица" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Редакция/Вмъкване" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Избор на колона (поне една):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Брой редове на страница" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Подреждане по:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Използване колоната като етикет за всяка точка" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Максимален брой редове за изчертаване" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Допълнителен критерий за търсене" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Изпълняване \"заявка по шаблон\" (знак за заместване: \"%\") за две различни " "колони" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Прелистване/Редакция точки" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Как да бъде използвано" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Възстановяване на мащабирането" @@ -3211,14 +3214,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3465,7 +3468,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Таблици" @@ -3479,12 +3482,12 @@ msgstr "Таблици" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Данни" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Загубено място" @@ -3590,7 +3593,7 @@ msgstr "Отворен" msgid "Closed" msgstr "Затворен" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3728,22 +3731,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Тази настройка е забранена, тя няма да влияе на конфигурацията" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Стойност: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Стойност по подразбиране" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Позволение на потребители да променят стойността" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Изчистване" @@ -4036,7 +4039,7 @@ msgstr "Знаков набор на файла" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4145,7 +4148,7 @@ msgstr "Етикет на ключа" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME тип" @@ -4181,7 +4184,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Ограждане на имената на таблици и полета с обратни кавички" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Режим на съвместимост на SQL" @@ -5666,10 +5669,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Изисква SQL валидаторът да бъде включван" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5927,7 +5930,7 @@ msgstr "Разширението %s липсва. Проверете конфи msgid "possible deep recursion attack" msgstr "възможна атака чрез дълбока рекурсия" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -5935,46 +5938,54 @@ msgstr "" "Сървърът не отговаря (или местният сокет на сървъра не е конфигуриран " "правилно)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Сървърът не отговаря." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Проверете правата на папката, съдържаща БД." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Подробности..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Смяна на паролата" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Без парола" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Отново" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Хеширане на паролата" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 съвместимо" @@ -6106,8 +6117,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6181,69 +6192,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Качване на файла за импорт..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "Файлът се качва, бъдете търпеливи. Не са налични повече подробности." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Импорт в текущия сървър" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Импорт в БД \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Импорт в таблица \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Файл за импортиране:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Файлът може да е компресиран (%s) или некомпресиран." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6321,71 +6332,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Състояние" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "страници" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Свободни страници" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Мръсни страници" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Страници съдържащи данни" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Страници за изчистване" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Заети страници" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Заключени страници" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Заявки за четене" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Заявки за запис" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Пропуснати прочитания" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Изчаквания за запис" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Пропуснати прочитания в %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Изчаквания за запис в %" @@ -6576,8 +6587,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6592,125 +6603,125 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Към БД: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Редактиране настройките на %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Към таблица: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Структурата на %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Скриване" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "двоичен" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Поради дължината си,
това поле може да е нередактируемо" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6754,7 +6765,7 @@ msgstr "Добавяне на представка на таблица" msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" @@ -7041,7 +7052,7 @@ msgstr "Опции на таблицата" msgid "Rename table to" msgstr "Преименуване на таблицата на" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Хранилище" @@ -7155,8 +7166,8 @@ msgstr "Добре дошли в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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, за да го създадете." @@ -7232,21 +7243,21 @@ msgstr "Грешно име/парола. Достъп отказан." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Файлът %s не съдържа идентификатор на ключ" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Неуспешно хардуерно удостоверяване" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Удостоверяване..." @@ -7383,20 +7394,21 @@ msgstr "Показване MIME типове" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Време на генериране" @@ -7623,7 +7635,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Име на таблица" @@ -7851,7 +7863,7 @@ msgstr "Създаване на PDF-и" msgid "Displaying Column Comments" msgstr "Показване на коментари към Колоните" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Браузърна трансформация" @@ -7919,7 +7931,7 @@ msgstr "Отмаркиране всички" msgid "Slave configuration" msgstr "Конфигурация на подчинен" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Промяна или преконфигуриране на главен сървъра" @@ -7930,8 +7942,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7951,15 +7963,15 @@ msgid "Slave status" msgstr "Състояние на подчинен" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Променлива" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Сървърен идентификатор" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -7967,17 +7979,17 @@ msgstr "" "Само подчинени стартирани с опция --report-host=host_name са показани в този " "списък." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Добавяне на потребител за репликация като подчинен" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Всеки потребител" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7986,34 +7998,34 @@ msgstr "Всеки потребител" msgid "Use text field" msgstr "От текстовото поле" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "От таблица Host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Генериране на парола" @@ -8072,7 +8084,7 @@ msgstr "Подробности" msgid "Event name" msgstr "Име на събитие" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Тип на събитието" @@ -8416,7 +8428,7 @@ msgstr "Няма събитие с име %1$s в БД %2$s" msgid "There are no events to display." msgstr "Няма събития." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8425,7 +8437,7 @@ msgstr "Няма събития." msgid "The %s table doesn't exist!" msgstr "Таблицата %s не съществува!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8471,91 +8483,91 @@ msgstr "Атрибути" msgid "Extra" msgstr "Допълнително" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Създаване нова страница" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Име на страница" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Автоматично оформление базирано на" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Вътрешни релации" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "ВЪНШЕН КЛЮЧ" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Моля изберете страница за редакция" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Избор на страница" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Избор на таблици" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Име на колона" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Показване схема на релациите" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Мрежата видима" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Показване свят" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Размери на таблиците видими" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Всички таблици да бъдат показвани с еднаква ширина" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Речник на данните" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Само ключовете видими" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Пейзажно" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Портретно" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Посока" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Размер на хартията" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8563,7 +8575,7 @@ msgstr "" "Текущата Страница има Референции към Таблици които вече не съществуват. " "Желаете ли да изтриете тези Референции?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8869,7 +8881,7 @@ msgstr "Потребители с достъп до "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Потребител" @@ -9004,8 +9016,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. Съдържанието на тази таблица може да се различава от " @@ -9066,11 +9078,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -9164,10 +9176,10 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" -"%s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" @@ -9180,12 +9192,12 @@ msgstr "Проследяването е активно." msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" @@ -9213,14 +9225,14 @@ msgid "Column %s has been dropped" msgstr "Колоната %s беше изтрита" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Първичен" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Индекс" @@ -9230,7 +9242,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Пълнотекстово" @@ -9254,7 +9266,7 @@ msgstr "Преглед релации" msgid "Propose table structure" msgstr "Анализ на таблицата" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." @@ -9262,7 +9274,7 @@ msgstr "Трябва да добавите поне една колона." msgid "Add column" msgstr "Добавяне колона" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Добавяне %s колона(и)" @@ -9285,15 +9297,15 @@ msgstr "След %s" msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статистика за редовете" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "статичен" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамичен" @@ -9301,15 +9313,15 @@ msgstr "динамичен" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Дължина ред" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Размер ред" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9355,15 +9367,15 @@ msgstr "Добавяне на SPATIAL индекс" msgid "Add FULLTEXT index" msgstr "Добавяне на FULLTEXT индекс" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Информация" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Използвано място" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Ефективни" @@ -9396,7 +9408,7 @@ msgstr "" msgid "Move column" msgstr "Преместване колона" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9405,11 +9417,11 @@ msgstr "" "За списъка на достъпните опции на трансформацията и техните трансформации по " "MIME тип натиснете на %sописания на трансформацията%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опции на трансформацията" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9422,33 +9434,33 @@ msgstr "" "поставете пред тях допълнителна обратно наклонена черта (например '\\\\xyz' " "или 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Много ENUM или SET данни?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Още място за редакция" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Няма" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Дефиниран като:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "след %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9637,7 +9649,7 @@ msgstr "" "Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни " "проблеми." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Няма БД" @@ -9874,8 +9886,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " -"%sскрипта за настройки%s." +"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %" +"sскрипта за настройки%s." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -9914,29 +9926,29 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен дневник за преглед" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файлове" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Показване на пълните заявки" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Име на дневник" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Положение" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Първоначално положение" @@ -9944,31 +9956,31 @@ msgstr "Първоначално положение" msgid "Character Sets and Collations" msgstr "Знакови набори и колации" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d БД беше изтрита успешно." msgstr[1] "%1$ds БД бяха изтрити успешно." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статистика за базите данни" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Главен сървър" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Подчинен сървър" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Разрешаване на статистика" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10038,38 +10050,38 @@ msgstr "Правата бяха презаредени успешно." msgid "Unknown error" msgstr "Неизвестна грешка" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Не възможност за осъществяване на връзка с главния %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Главният не може да бъде сменен" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Главният сървър сменен с %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Този сървър е конфигуриран като главен за репликация." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Показване състоянието на главния" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Показване свързаните подчинени" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10078,11 +10090,11 @@ msgstr "" "Този сървър не е настроен като главен за репликация. Желаете ли да го настроите?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Конфигурация на главния" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10091,19 +10103,19 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Реплициране на всички БД; Игнориране на:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Игнориране на всички БД; Реплициране на:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Изберете БД:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10111,7 +10123,7 @@ msgstr "" "Сега добавете следните редове в края на секцията [mysqld] на вашия my.cnf и " "рестартирайте MySQL сървъра." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10121,82 +10133,82 @@ msgstr "" "\". След това би трябвало да видите съобщение, информиращо ви, че този " "сървър е конфигуриран като главен" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Подчинената SQL нишка не пусната!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Подчинената В/И нишка не пусната!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Сървърът е конфигуриран като подчинен в репликация. Искате ли да:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Показване таблицата със състоянието на подчинените" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Синхронизиране на БД с главен" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Контролиране на подчинения:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Пълно пускане" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Пълно спиране" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Изчистване на подчинения" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Пускане само на SQL нишка" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Спиране само на SQL нишка" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Пускане само на В/И нишка" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Спиране само на В/И нишка" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Обработка на грешки:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Прескачане на грешки може да доведе до десинхронизация между главния и " "подчинените сървъри!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Прескачане на текущата" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Прескачане на следващата" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "грешки." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10205,152 +10217,152 @@ msgstr "" "Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно спряна." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Манипулатор" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Буфер за заявки" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Нишки" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Временни данни" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Забавени вмъквания" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Буфер за ключове" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Свръзки" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Сортиране" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Координатор на транзакциите" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Изчистване от буфера (затваряне) на всички таблици" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Показване отворените таблици" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Показване на подчинените хостове" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Показване статуса на подчинените" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Изчистване на буфера за заявки" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Информация за състоянието на MySQL сървъра" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Всички променливи на състоянието" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Наблюдател" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Съветник" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Брой редове:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Скорост на опресняване: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Филтри" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Съдържащ думата:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Само тревожни стойности" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Филтър по категория..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Неформатирани стойности" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Сродни връзки:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Пускане анализатор" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10358,31 +10370,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Запитвания от включването: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Заявление" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "№" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Този MySQL сървър работи от %1$s. Пуснат е на %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10390,15 +10402,15 @@ msgstr "" "Този MySQL сървър работи като главен и подчинен в " "репликация." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "Този MySQL сървър работи като главен в репликация." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "Този MySQL сървър работи като подчинен в репликация." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10406,11 +10418,11 @@ msgstr "" "За повече информация относно статусът на репликация на този сървъра, моля " "посетете секция репликация." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Състояние на репликацията" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10418,35 +10430,35 @@ msgstr "" "При натоварен сървър байтовите броячи може да превъртат и статистиката " "докладвана от MySQL да е невярна." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Получени" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Изпратени" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "максимален брой едновременни връзки" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Неуспешни опити" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Команда" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10454,27 +10466,27 @@ msgstr "" "Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " "правилно връзките." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10482,78 +10494,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10561,7 +10573,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10569,42 +10581,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10612,33 +10624,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10647,195 +10659,195 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10843,48 +10855,48 @@ msgstr "" "Максималният брой едновременно използвани връзки от като е стартиран " "сървърът." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10892,99 +10904,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10992,18 +11004,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11011,61 +11023,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Включване на Наблюдателя" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Добавяне диаграма" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Стойност по подразбиране" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Инструкции на наблюдателя" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11079,7 +11091,7 @@ msgstr "" "general_log. Отбележете обаче, че general_log генерира много данни и " "натоварването на сървъра се увеличава с до 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11087,18 +11099,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Използване наблюдател:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11106,11 +11118,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11118,86 +11130,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Променливи(а) на състоянието" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Избор на серии:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "или въведете променлива:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Прилагане на разделител" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Статистика на дневника" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Анализатор заявки" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d секунда" msgstr[1] "%d секунди" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11315,19 +11327,19 @@ msgstr "" "Целевата БД ще бъде напълно синхронизирана с изходната. Изходната - ще " "остане непроменена." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Неуспешно създаване на променлива" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Сървърни променливи и настройки" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Сесийна стойност" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобална стойност" @@ -11613,42 +11625,42 @@ msgstr "Ключът трябва да съдържа букви, цифри [em msgid "Wrong data" msgstr "Грешни данни" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Генерирано от" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Етикет" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблицата %1$s беше променена" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Колоните бяха преместени упешно." @@ -11779,17 +11791,17 @@ msgstr "Редактиране" msgid "Index name:" msgstr "Име на индекс:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" трябва да е името на и единствено на главен ключ!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тип на индекса:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавяне към индекса на  %s колона(и)" @@ -11950,38 +11962,38 @@ msgstr "Експорт като %s" msgid "Show versions" msgstr "Показване на версиите" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Изключване проследяването за %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Изключване сега" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Включване проследяването за %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Включване сега" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Създаване на версия %1$s от %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Проследяване следните изрази за дефиниране на данни:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Проследяване следните изрази за манипулиране на данни:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Създаване на версия" @@ -12319,8 +12331,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12439,8 +12451,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% от всички сортировки се изпълняват с временни таблици, тази стойност " "трябва да бъде под 10%%." diff --git a/po/bn.po b/po/bn.po index 8dbb7c121d..e93b27e723 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-03-27 16:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bangla \n" -"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "সবগুলো দেখাও" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "পাতার সংখ্যাঃ" @@ -39,36 +39,36 @@ msgstr "" "করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে " "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "খুঁজুন" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "খুঁজুন" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "যাও" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "বর্ণনা" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "এই মান ব্যাবহার করুন" @@ -119,18 +119,18 @@ msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "কলামের" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "কলামের" msgid "Type" msgstr "ধরন" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "ধরন" msgid "Null" msgstr "খালি" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "খালি" msgid "Default" msgstr "ডিফল্ট" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "ডিফল্ট" msgid "Links to" msgstr "সংযুক্তি হবে" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "সংযুক্তি হবে" msgid "Comments" msgstr "মন্তব্যসমূহ" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "মন্তব্যসমূহ" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "না" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "না" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "হ্যাঁ" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দেখা হোক" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "সব সিলেক্ট করুন" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "সবগুলো অনির্বাচিত হোক" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s ডাটাবেজটির নাম পরিবর্তন করে %s নাম দেওয়া হয়েছে" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "PhpMyAdmin কনফিগারেশন সংরক্ষণাগার নিষ্ক্রিয় করা হয়েছে। কারন খুঁজতে ক্লিক করুন %shere" "%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "টেবিল" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rows" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "আকার" @@ -346,7 +346,7 @@ msgstr "in use" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creation" @@ -354,7 +354,7 @@ msgstr "Creation" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "সর্বশেষ আপডেট" @@ -362,7 +362,7 @@ msgstr "সর্বশেষ আপডেট" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Last check" @@ -377,7 +377,7 @@ msgstr[1] "%s টেবিলসমূহ(s)" msgid "You have to choose at least one column to display" msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sদৃষ্টিলব্ধ নির্মাতা%s পরিবর্তন করুন" @@ -409,9 +409,9 @@ msgstr "টেবিলগুলি ট্রাক করা" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "ডাটাবেজ" @@ -429,66 +429,66 @@ msgstr "আপডেটেড" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "অবস্থা" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Action" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "দেখান" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "মুছে ফেল" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "সক্রিয়" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "সক্রিয় নয়" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "সংস্করণসমূহ" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "ট্র্যাকিং রিপোর্ট" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "গঠন স্ন্যাপশট" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "আনট্রাক্ড টেবিল" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "টেবিল ট্রাক কর" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "ডাটাবেজ লগ" @@ -504,12 +504,12 @@ msgstr "" msgid "Bad parameters!" msgstr "বাজে প্যারামিটার!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" @@ -529,122 +529,126 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে msgid "Invalid export type" msgstr "অবৈধ রপ্তানি প্রকার" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" কলামের মান" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "বেজ লেয়ার হিসাবে OpenStreetMaps ব্যবহার" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "এসআরআইডি" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "জ্যামিতি" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "পয়েন্ট" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "এক্স" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "ওয়াই" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "পয়েন্ট %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "একটি পয়েন্ট যোগ কর" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "লাইনস্ট্র্রিং" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "আউটার রিং" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "ইনার রিং" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "একটি লাইনস্ট্রিং যোগ করুন" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "একটি ইনার রিং যোগ করুন" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "পলিগন" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "একটি পলিগন যোগ করুন" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "জ্যামিতি যোগ করুন" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "ফলাফল" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" ""ফাংশন" কলাম থেকে "GeomFromText" বেছে নিন এবং "" "VALUE" ক্ষেত্রের মধ্যে নিম্নলিখিত পংক্তি পেস্ট করুন" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "বুকমার্কটি মুছে ফেলা হয়েছে" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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 " @@ -654,40 +658,40 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "FAQ 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "অক্ষর সেট রূপান্তর গ্রন্থাগারের ছাড়া ফাইলের অক্ষর সেট রূপান্তর করতে পারেন না" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে। %d সংখ্যক query সম্পাদন করা হয়েছে" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -701,7 +705,7 @@ msgstr "পিছনে" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -711,7 +715,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -751,7 +755,7 @@ msgstr "ইন্ডেস্ক যোগ করুন" msgid "Edit Index" msgstr "ইনডেক্স সম্পাদনা করুন" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "ইন্ডেক্সে %d কলামসমূহ যোগ করুন" @@ -801,24 +805,24 @@ msgstr "বন্ধ" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "সরাসরি ট্রাফিক লেখচিত্র" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "সংযোগ/প্রক্রিয়া লেখচিত্র সরাসরি" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "কুয়েরী লেখচিত্র সরাসরি" @@ -828,24 +832,24 @@ msgstr "স্থিসি উপাত্ত" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "স্থিতি উপাত্ত" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -865,7 +869,7 @@ msgstr "সার্ভার ট্রাফিক (in KiB)" msgid "Connections since last refresh" msgstr "গত রিফ্রেস থেকে সংযোগসমূহ" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processes" @@ -883,7 +887,7 @@ msgstr "গত রিফ্রেস থেকে প্রশ্নসমূহ msgid "Questions (executed statements by the server)" msgstr "প্রশ্নসমূহ (সার্ভারের দ্বারা সঞ্চালিত বিবৃতি)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "কুয়েরী পরিসংখ্যান" @@ -928,13 +932,13 @@ msgstr "সিস্টেম বিনিময়" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "মেগাবাইট" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "কিলোবাইট" @@ -986,32 +990,32 @@ msgstr "পাঠনো বাইটস" msgid "Bytes received" msgstr "গৃহীত বাইটস" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "সংযোগসমূহ" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "বাইট" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "গিগাবাইট" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "টেরাবাইট" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "পেটাবাইট" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "এক্সাবাইট" @@ -1025,11 +1029,11 @@ msgstr "%d টেবিল(সমূহ)" msgid "Questions" msgstr "প্রশ্ন" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "সেটিংস" @@ -1050,12 +1054,12 @@ msgid "Please add at least one variable to the series" msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "কোনটিই নয়" @@ -1155,7 +1159,7 @@ msgstr "General relation features" msgid "Current settings" msgstr "General relation features" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1245,7 +1249,7 @@ msgstr "SQL ব্যাখ্যা কর" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "সময়" @@ -1354,8 +1358,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" @@ -1609,12 +1613,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "সেভ করুন" @@ -1680,8 +1684,8 @@ msgstr "Query results operations" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignore" @@ -1791,7 +1795,7 @@ msgstr "শনিবার" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "তৈরী কর" @@ -1915,27 +1919,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1943,37 +1947,37 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "ডিসেম্বর" @@ -2022,32 +2026,32 @@ msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "শনিবার" @@ -2181,16 +2185,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per hour" @@ -2207,7 +2211,7 @@ msgstr "Max: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "বর্ণনা" @@ -2230,14 +2234,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "ভূল" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL query" @@ -2255,85 +2259,85 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Refresh" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "রবিবার" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2341,28 +2345,28 @@ msgctxt "First page" msgid "Begin" msgstr "শুরু" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "পরবর্তী" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2370,106 +2374,106 @@ msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insert" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "ব্রাউজ করুন" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operations" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "খালি" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "প্রিন্ট কর" @@ -2486,105 +2490,105 @@ msgstr "" msgid "Font size" msgstr "ফন্ট এর আকার" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascending" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descending" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "সাজাঁন" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "ক্ষেত্র" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "নির্ণায়ক সারি যোগ /মুছুন" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "ফিল্ড কলামগুলি যোগ/মুছুন" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "টেবিল ব্যাবহারকারী" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "অথবা" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "এবং" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modify" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "সব শব্দ" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "মোট: %s মানানসই" msgstr[1] "মোট: %s গুলি মানানসই" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2593,44 +2597,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ভিতরের টেবিলটি মানানসই %s" msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "মুছে ফেল" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "শব্দ বা মানের জন্য অনুসন্ধান (ওয়াইল্ডকার্ড: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Find:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "ভিতরে টেবিল (গুলি):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "ভিতরে টেবিল(গুলি):" @@ -2685,8 +2689,8 @@ msgstr "Execute bookmarked query" msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2773,7 +2777,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Kill" @@ -2790,8 +2794,8 @@ msgstr "in query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন." #: libraries/DisplayResults.class.php:4939 @@ -2802,7 +2806,7 @@ msgstr "" msgid "total" msgstr "মোট" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2813,7 +2817,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2823,8 +2827,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "সব পরীক্ষা করুন" @@ -2865,52 +2869,52 @@ msgstr "লিংক পাওয়া যায়নি" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2919,67 +2923,67 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Collation" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2988,12 +2992,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "সার্ভার" @@ -3064,18 +3068,18 @@ msgstr "User" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "বাইনারী লগ" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replication" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "চলকসমূহ" @@ -3215,8 +3219,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ফাংশন" @@ -3226,11 +3230,11 @@ msgstr "ফাংশন" msgid "Operator" msgstr "অপারেটর" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "মান" @@ -3240,68 +3244,68 @@ msgstr "মান" msgid "Table Search" msgstr "খুঁজুন" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Insert" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "ক্রম প্রদর্শন কর" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL query" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "PHP Version" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3376,14 +3380,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3634,7 +3638,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "টেবিলসমূহ" @@ -3648,12 +3652,12 @@ msgstr "টেবিলসমূহ" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "ডাটা" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3764,7 +3768,7 @@ msgstr "" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3912,22 +3916,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "রিসেট করুন" @@ -4211,7 +4215,7 @@ msgstr "ফাইল এর অক্ষরসমূহঃ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "ফরমেট" @@ -4335,7 +4339,7 @@ msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "মাইম এর ধরন" @@ -4376,7 +4380,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5913,10 +5917,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6171,7 +6175,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6179,48 +6183,56 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "The server is not responding" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6381,12 +6393,12 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6474,75 +6486,75 @@ msgstr "Server version" msgid "authored on %1$s by %2$s" msgstr "Server version" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "কোন ডাটাবেজ নাই" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "কোন ডাটাবেজ নাই" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "ইম্পোর্ট করার জন্য ফাইল" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6630,71 +6642,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "পাতাসমুহ" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "ফ্রী পাতাসমূহ" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "নোংরা পাতাসমূহ" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "ডাটাসহ পাতাসমূহ" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "ব্যাস্ত পাতাসমূহ" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6887,8 +6899,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6905,127 +6917,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "শুধুই গঠনপ্রণালী" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "বাইনারী" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7073,7 +7085,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7362,7 +7374,7 @@ msgstr "" msgid "Rename table to" msgstr "টেবিল রিনেম করুন" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Storage Engine" @@ -7486,8 +7498,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -7563,21 +7575,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7746,20 +7758,21 @@ msgstr "Available MIME types" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "হোষ্ট" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "তৈরী করার জন্য সময়" @@ -8003,7 +8016,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 #, fuzzy msgid "Table name" @@ -8275,7 +8288,7 @@ msgstr "পিডিএফ সমূহ তৈরী" msgid "Displaying Column Comments" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browser transformation" @@ -8341,7 +8354,7 @@ msgstr "Uncheck All" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8352,8 +8365,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8376,31 +8389,31 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "চলক" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "সার্ভারের আইডি" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8409,34 +8422,34 @@ msgstr "যেকোন ব্যাবহারকারী" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "পাসওয়ার্ড তৈরী কর" @@ -8501,7 +8514,7 @@ msgstr "" msgid "Event name" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Event type" @@ -8892,7 +8905,7 @@ msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া য msgid "There are no events to display." msgstr "টেবিল পরীক্ষা কর" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8902,7 +8915,7 @@ msgstr "টেবিল পরীক্ষা কর" msgid "The %s table doesn't exist!" msgstr "The \"%s\" table doesn't exist!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8949,101 +8962,101 @@ msgstr "Attributes" msgid "Extra" msgstr "অতিরিক্ত" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "পাতার সংখ্যাঃ" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatic layout" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "অনুগ্রহ করে সম্পাদনা করার জন্য একটি পাতা নির্বাচন করুন" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "সব সিলেক্ট করুন" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "টেবিল সিলেক্ট করুন" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "কলামের নাম" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "রং দেখান" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "সব টেবিল সমান প্রশস্থতাসহ প্রদর্শন করুন?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "ডাটা অভিধান" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Creation" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "পাতার আকার" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9052,7 +9065,7 @@ msgstr "" "ফেলতে চান? The current page has references to tables that no longer exist. " "Would you like to delete those references?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9353,7 +9366,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "User" @@ -9497,8 +9510,8 @@ msgstr "User overview" 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 "" #: libraries/server_privileges.lib.php:3054 @@ -9560,11 +9573,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -9646,7 +9659,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -9659,12 +9672,12 @@ msgstr "ট্র্যাকিং সক্রিয়।" msgid "Tracking is not active." msgstr "ট্র্যাকিং সক্রিয় নয়।" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -9695,14 +9708,14 @@ msgid "Column %s has been dropped" msgstr "Table %s has been dropped" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "প্রাথমিক" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "ইন্ডেস্ক" @@ -9712,7 +9725,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9740,7 +9753,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9752,7 +9765,7 @@ msgstr "You have to add at least one field." msgid "Add column" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9777,15 +9790,15 @@ msgstr "After %s" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "ডায়নামিক" @@ -9793,15 +9806,15 @@ msgstr "ডায়নামিক" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "সাড়ির আকার" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9851,15 +9864,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "তথ্য" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Space usage" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effective" @@ -9899,18 +9912,18 @@ msgstr "" msgid "Move column" msgstr "Add/Delete Field Columns" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9922,36 +9935,36 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "কোনটিই নয়" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10157,7 +10170,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" @@ -10475,30 +10488,30 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "লগ নাম" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "অবস্থান" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "প্রকৃত অবস্থান" @@ -10506,7 +10519,7 @@ msgstr "প্রকৃত অবস্থান" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10514,24 +10527,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " msgstr[1] "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "ডাটাবেজসমূহের পরিসংখ্যান" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "পরিসংখ্যান চালু কর" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10602,51 +10615,51 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10655,279 +10668,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Please select a database" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "শুধুই গঠনপ্রণালী" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "শুধুই গঠনপ্রণালী" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Query cache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Threads" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Key cache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "সাজাঁন" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Number of fields" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Refresh" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "ক্ষেত্রসমূহ" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Do not change the password" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Query type" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "ফাংশনসমূহ" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10935,119 +10948,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "গৃহীত" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Sent" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "আইডি" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "নির্দেশ" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11055,78 +11068,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11134,7 +11147,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11142,42 +11155,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11185,33 +11198,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11220,248 +11233,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAY queues." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11469,99 +11482,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11569,18 +11582,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11588,70 +11601,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "শনিবার" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11660,7 +11673,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11668,18 +11681,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11687,11 +11700,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11699,92 +11712,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "ডাটাবেজ রিনেম কর" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "টেবিল সিলেক্ট করুন" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Invalid table name" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL query" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Row Statistics" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "সব সিলেক্ট করুন" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Query type" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11792,7 +11805,7 @@ msgid_plural "%d seconds" msgstr[0] "per second" msgstr[1] "per second" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11913,19 +11926,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -12218,44 +12231,44 @@ msgstr "" msgid "Wrong data" msgstr "কোন ডাটাবেজ নাই" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL result" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "লেবেল" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy msgid "The columns have been moved successfully." msgstr "The selected users have been deleted successfully." @@ -12411,16 +12424,16 @@ msgstr "Print view" msgid "Index name:" msgstr "ইন্ডেস্ক নামঃ" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "ইন্ডেস্ক এর ধরনঃ" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Index এ যোগ কর  %s column(s)" @@ -12592,39 +12605,39 @@ msgstr "Export type" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server version" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Server version" @@ -12991,8 +13004,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13126,8 +13139,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/br.po b/po/br.po index d27a856845..ec7fd1cbe9 100644 --- a/po/br.po +++ b/po/br.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 14:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: LANGUAGE \n" -"Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: br\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Show all" msgstr "Diskouez pep tra" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Pajenn niv. : " @@ -43,36 +43,36 @@ msgstr "" "serret ar prenestr orin ganeoc'h pe stanket eo an hizivadurioù etre " "prenestroù gant ho merdeer evit abegoù surentez." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Klask" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -80,28 +80,28 @@ msgstr "Klask" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Mont" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Anv ar meneger" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Deskrivadur" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Ober gant an talvoud-mañ" @@ -123,18 +123,18 @@ msgstr "Krouet eo bet an diaz roadennoù %1$s." msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -142,18 +142,18 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Bann" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -170,11 +170,11 @@ msgstr "Bann" msgid "Type" msgstr "Seurt" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -186,9 +186,9 @@ msgstr "Seurt" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -201,8 +201,8 @@ msgstr "Null" msgid "Default" msgstr "Dre ziouer" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -210,11 +210,11 @@ msgstr "Dre ziouer" msgid "Links to" msgstr "Liammet ouzh" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -223,12 +223,12 @@ msgstr "Liammet ouzh" msgid "Comments" msgstr "Evezhiadennoù" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -239,23 +239,23 @@ msgstr "Evezhiadennoù" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ket" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -267,8 +267,8 @@ msgstr "Ket" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -278,35 +278,35 @@ msgid "View dump (schema) of database" msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Diuzañ pep tra" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Diziuzañ pep tra" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Goullo eo anv an diaz roadennoù !" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Deuet eo anv an diaz roadennoù %s da vezañ %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Eilet eo bet an diaz roadennoù %s war %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -315,12 +315,12 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -330,14 +330,14 @@ msgstr "Taolenn" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Linennoù" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Ment" @@ -350,7 +350,7 @@ msgstr "en implij" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Krouiñ" @@ -358,7 +358,7 @@ msgstr "Krouiñ" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Hizivadenn ziwezhañ" @@ -366,7 +366,7 @@ msgstr "Hizivadenn ziwezhañ" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" @@ -381,7 +381,7 @@ msgstr[1] "%s taolenn" msgid "You have to choose at least one column to display" msgstr "Ret eo deoc'h dibab da nebeutañ ur bann da vezañ diskwelet" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cheñch evit ar %ssavour gwelet%s" @@ -413,9 +413,9 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Diaz roadennoù" @@ -433,66 +433,66 @@ msgstr "Hizivaet" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Statud" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Oberiadenn" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Diskouez" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Diverkañ" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "oberiant" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "dizoberiant" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Stummoù" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Danevell heuliañ" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Taolennoù n'int ket heuliet" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Heuliañ an daolenn" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Marilh an diaz roadennoù" @@ -508,12 +508,12 @@ msgstr "Ret eo enrollañ an diuzadenn ezporzhiañ en ur restr !" msgid "Bad parameters!" msgstr "Arventennoù fall !" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "N'eus ket egor a-walc'h evit gallout enrollañ ar restr %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -526,7 +526,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "N'eo ket aotreet ar servijer web da enrollañ ar restr %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." @@ -535,117 +535,124 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." msgid "Invalid export type" msgstr "Seurt ezporzhiadenn direizh" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Talvoud evit ar bann \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Mentoniezh" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Poent" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Poent %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Ouzhpennañ ur poent" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Aradennad linennoù" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Kelc'h diavaez" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Kelc'h diabarzh" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Ouzhpennañ un aradennad linennoù" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Ouzhpennañ ur c'helc'h diabarzh" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Lieskorneg" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Ouzhpennañ ul lieskorneg" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Ouzhpennañ mentoniezh" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Disoc'h" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Dibab \"GeomFromText\" er bann \"Arc'hwel\" ha pegañ an neudennad er " "vaezienn \"Talvoud\" a-is" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " -"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" +"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Diverket eo bet ar sined." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "N'haller ket lenn ar restr" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -655,7 +662,7 @@ msgstr "" "gwasket (%s). Pe n'eo ket emplementet ar mod gwaskañ-se en ho kefluniadur, " "pe eo bet diweredekaet." -#: import.php:400 +#: import.php:404 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 " @@ -666,26 +673,26 @@ msgstr "" "ho kefluniadur PHP. Gwelet [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Enporzhiet eo bet an traoù ervat, %d reked zo bet kaset da benn." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -693,7 +700,7 @@ msgstr "" "Aet eur dreist d'ar vevenn amzer. Mar fell deoc'h kenderc'hel gant an " "enporzhiañ, adkasit ar restr hag e kendalc'ho an argerzh." -#: import.php:513 +#: import.php:517 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." @@ -702,9 +709,9 @@ msgstr "" "Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma " "ne vez ket kresket ganeoc'h bevenn amzer PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Sevenet eo bet ho reked SQL ervat" @@ -719,7 +726,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" @@ -729,7 +736,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" msgid "Do you really want to execute \"%s\"?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -773,7 +780,7 @@ msgstr "Menegerioù" msgid "Edit Index" msgstr "Mod aozañ" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %d column(s) to index" @@ -824,24 +831,24 @@ msgstr "Serriñ" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Grafik an tremenerezh evel m'emañ diouzhtu" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Grafik ar rekedoù evel m'emaint diouzhtu" @@ -851,24 +858,24 @@ msgstr "Roadennoù stadegel" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Hollad" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -888,7 +895,7 @@ msgstr "Tremenerezh war ar servijer (e Kio)" msgid "Connections since last refresh" msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Argerzhioù" @@ -906,7 +913,7 @@ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ" msgid "Questions (executed statements by the server)" msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Stadegoù war ar rekedoù" @@ -948,13 +955,13 @@ msgstr "Takad eskemm reizhiad (swap)" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "Kio" @@ -1006,32 +1013,32 @@ msgstr "Oktedoù kaset" msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Kevreadennoù" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "Eio" @@ -1047,11 +1054,11 @@ msgstr "%s daolenn" msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Arventennoù" @@ -1072,12 +1079,12 @@ msgid "Please add at least one variable to the series" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Hini" @@ -1177,7 +1184,7 @@ msgstr "Kemmañ an arventennoù" msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Titl ar grafik" @@ -1268,7 +1275,7 @@ msgstr "Displegañ SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1371,8 +1378,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Enporzhiañ" @@ -1607,12 +1614,12 @@ msgstr "Pad seveniñ hirañ" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Enrollañ" @@ -1674,8 +1681,8 @@ msgstr "Kuzhat disoc'hoù an enklask" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Na ober van" @@ -1780,7 +1787,7 @@ msgstr "Urzhiañ" msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Genel" @@ -1883,63 +1890,63 @@ msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Kzu" @@ -1980,32 +1987,32 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sad" @@ -2121,16 +2128,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2147,7 +2154,7 @@ msgstr "Ment vrasañ : %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Teuliadur" @@ -2170,14 +2177,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fazi" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Reked SQL" @@ -2195,83 +2202,83 @@ msgstr "Reked SQL" msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "DIbosupl kevreañ d'ar c'hadarnataer SQL !" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Hep kod PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Krouiñ kod PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Kas ar reked" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Freskaat" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "N'eo ket dav kadarnaat SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Kadarnaat SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Kemmañ ar reked-mañ enlinenn" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "O profilañ" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y da %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s deiz, %s eur, %s munut ha %s eilenn" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2279,28 +2286,28 @@ msgctxt "First page" msgid "Begin" msgstr "Kregiñ" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Kent" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "War-lerc'h" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2308,105 +2315,105 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Mont d'an diaz roadennoù "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Framm" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Furchal" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Goullonderiñ" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Seveniñ" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Moullañ" @@ -2423,105 +2430,105 @@ msgstr "" msgid "Font size" msgstr "Ment an destenn" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "War gresk" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "War zigresk" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Urzhiañ" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Dezverk" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Ouzhpennañ/Diverkañ linennoù dezverkoù" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Hizivaat ar reked" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Implijout taolennoù" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Pe" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ha" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ensoc'hañ" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Diverk." -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Kemmañ" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Reked SQL ouzh an diaz roadennoù %s: " -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "unan eus ar gerioù da nebeutañ" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "an holl c'herioù" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "ar frazenn-rik" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "evel un droienn reoliek" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Disoc'hoù ar c'hlask evit \"%s\" %s : " -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Hollad : %s glotadenn" msgstr[1] "Hollad : %s klotadenn" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2530,44 +2537,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s glotadenn en daolenn %s" msgstr[1] "%s klotadenn en daolenn %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Diverkañ" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Klask en diaz roadennoù" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Gerioù pe dalvoudoù da glask (Joker: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Kavout :" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "E diabarzh an taolennoù" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Er bann :" @@ -2615,8 +2622,8 @@ msgstr "Seveniñ" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2693,7 +2700,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2710,11 +2717,11 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " -"%steulioù titouriñ%s." +"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %" +"steulioù titouriñ%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2724,7 +2731,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2735,7 +2742,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Evit ar re zo diuzet :" @@ -2745,8 +2752,8 @@ msgstr "Evit ar re zo diuzet :" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Askañ pep tra" @@ -2784,17 +2791,17 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad upload_max_filesize directive e php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2802,27 +2809,27 @@ msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Hanter bellgarget eo bet ar restr nemetken." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Mankout a ra ur c'havlec'h padennek." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Fazi en ur skrivañ ar restr war ar bladenn." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Harzet eo bet ar pellgargañ gant an astenn." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2830,11 +2837,11 @@ msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2843,68 +2850,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "N'eus bet termenet meneger ebet !" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Menegerioù" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Dibar" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalegezh" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Etrerummadiñ" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Evezhiadenn" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Diverket eo bet an alc'hwez kentidik" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Diverket eo bet ar meneger %s." -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2915,12 +2922,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Diazoù roadennoù" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servijer" @@ -2988,18 +2995,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Eilañ" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3130,8 +3137,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3141,11 +3148,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3155,64 +3162,64 @@ msgstr "" msgid "Table Search" msgstr "Klask" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Ensoc'hañ" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Kuzhat an dezverkoù klask" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3287,14 +3294,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3545,7 +3552,7 @@ msgstr "kenrannet" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Taolennoù" @@ -3559,12 +3566,12 @@ msgstr "Taolennoù" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Roadennoù" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Dilerc'hioù" @@ -3674,7 +3681,7 @@ msgstr "Digor" msgid "Closed" msgstr "Serr" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3813,22 +3820,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Diweredekaet eo an arventenn; ne vo ket lakaet e pleustr gant ho kefluniadur" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Adlakaat an talvoud dre ziouer" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Aotren an implijerien da bersonelaat an talvoud-mañ" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Adderaouekaat" @@ -4122,7 +4129,7 @@ msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Furmad" @@ -4231,7 +4238,7 @@ msgstr "Alc'hwez an dikedenn" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Seurt MIME" @@ -4267,7 +4274,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Lakaat krochedoù stouet a bep tu da anvioù an taolennoù hag ar bannoù" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Mod kenglotañ gant SQL" @@ -5735,10 +5742,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5990,52 +5997,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6165,8 +6180,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6242,71 +6257,71 @@ msgstr "Arventennoù pouezus all" msgid "authored on %1$s by %2$s" msgstr "Arventennoù pouezus all" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Furmad ar restr enporzhiañ" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6382,71 +6397,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6637,8 +6652,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6653,127 +6668,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "Mont d'an diaz roadennoù" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Lakaat an talvoud da %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Kuzhat" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6817,7 +6832,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7106,7 +7121,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7220,11 +7235,11 @@ msgstr "Degemer mat e %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " -"%1$sskript kefluniañ%2$s da sevel unan." +"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %" +"1$sskript kefluniañ%2$s da sevel unan." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7301,21 +7316,21 @@ msgstr "Ger-tremen/anv implijer fall. Moned nac'het." msgid "Can not find signon authentication script:" msgstr "N'hall ket kavout ar skript dilesa evit ar mod \"signon\" :" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "N'eus anaouder alc'hwez ebet er restr %s" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "C'hwitet eo bet dilesadur ar periant." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "N'eus bet luget alc'hwez dilesa reizh ebet" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "O tilesa..." @@ -7452,20 +7467,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7696,7 +7712,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7900,7 +7916,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7966,7 +7982,7 @@ msgstr "Diaskañ pep tra" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7977,8 +7993,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7998,31 +8014,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8031,34 +8047,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8121,7 +8137,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8496,7 +8512,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8505,7 +8521,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8551,97 +8567,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Geriadur roadennoù" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8933,7 +8949,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -9067,8 +9083,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9125,11 +9141,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9211,7 +9227,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Goullonderet eo bet an daolenn %s" @@ -9224,12 +9240,12 @@ msgstr "Oberiant eo an heuliañ." msgid "Tracking is not active." msgstr "N'eo ket oberiant an heuliañ." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Diverket eo bet ar Gweled %s" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Diverket eo bet an daolenn %s" @@ -9257,14 +9273,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -9274,7 +9290,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9302,7 +9318,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9310,7 +9326,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9333,15 +9349,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9349,15 +9365,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9405,15 +9421,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9443,18 +9459,18 @@ msgstr "" msgid "Move column" msgstr "Er bann :" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9462,33 +9478,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9672,7 +9688,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9951,29 +9967,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9981,7 +9997,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9989,24 +10005,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Diverket eo bet an diaz roadennoù %s." msgstr[1] "Diverket eo bet an diaz roadennoù %s." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10076,49 +10092,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10127,264 +10143,264 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of inserted rows" msgid "Number of data points: " msgstr "Niver a linennoù da ensoc'hañ" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Freskaat" # verb pe ak. ? -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Silañ" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Connections" msgid "Instructions" msgstr "Kevreadennoù" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10392,116 +10408,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Personelaat ar bajenn deraouiñ" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Urzhiad" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10509,78 +10525,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10588,7 +10604,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10596,42 +10612,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10639,33 +10655,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10674,244 +10690,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Furmad ar restr enporzhiañ" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10919,99 +10935,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11019,18 +11035,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11038,69 +11054,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "N'eo ket oberiant an heuliañ." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adlakaat an talvoud dre ziouer" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11109,7 +11125,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11117,20 +11133,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Paouez gant an evezhiañ" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11138,11 +11154,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11150,96 +11166,96 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Dilemel ar grafik" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Foreign Key" msgid "Select series:" msgstr "Diuzit an alc'hwez estren" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Anv taolenn direizh" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add user" msgid "Add this series" msgstr "Ouzhpennañ un implijer" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "Stadegoù war ar rekedoù" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11357,19 +11373,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11653,42 +11669,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -11832,16 +11848,16 @@ msgstr "Mod aozañ" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12004,41 +12020,41 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Roadennoù a vank evit %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Other core settings" msgid "Create version %1$s of %2$s" msgstr "Arventennoù pouezus all" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12408,8 +12424,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12542,8 +12558,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/bs.po b/po/bs.po index 5fdaff2f75..d0afb887ac 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bosnian \n" -"Language: bs\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: bs\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Broj strane:" @@ -40,36 +40,36 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Pretraživanje" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Koristi ovu vrijednost" @@ -118,18 +118,18 @@ msgstr "Baza %s je odbačena." msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,7 +137,7 @@ msgstr "Komentari tabele" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -145,12 +145,12 @@ msgstr "Komentari tabele" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Imena kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Podrazumjevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Podrazumjevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -275,34 +275,34 @@ msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -314,12 +314,12 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Redova" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Veličina" @@ -349,7 +349,7 @@ msgstr "se koristi" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Napravljeno" @@ -357,7 +357,7 @@ msgstr "Napravljeno" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Posljednja izmjena" @@ -365,7 +365,7 @@ msgstr "Posljednja izmjena" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Posljednja provjera" @@ -381,7 +381,7 @@ msgstr[1] "%s tabela" msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -416,9 +416,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -437,69 +437,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Akcija" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Prikaži" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Operacije" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -519,12 +519,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Dodaj novo polje" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -537,7 +537,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." @@ -547,170 +547,170 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." msgid "Invalid export type" msgstr "Nema tabela" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dodaj novo polje" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Dodaj novo polje" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" @@ -724,7 +724,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -734,7 +734,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -780,7 +780,7 @@ msgstr "Dodaj novo polje" msgid "Edit Index" msgstr "Ključ" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Dodaj novo polje" @@ -837,26 +837,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -867,24 +867,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -906,7 +906,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesi" @@ -926,7 +926,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -972,13 +972,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1036,32 +1036,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Konekcije" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "bajta" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1077,11 +1077,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Operacije" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1105,12 +1105,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "nema" @@ -1210,7 +1210,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1298,7 +1298,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Vrijeme" @@ -1407,8 +1407,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" @@ -1657,12 +1657,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Sačuvaj" @@ -1728,8 +1728,8 @@ msgstr "SQL rezultat" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoriši" @@ -1837,7 +1837,7 @@ msgstr "Prikaz zapisa" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Generirao" @@ -1962,27 +1962,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1990,37 +1990,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -2069,32 +2069,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sub" @@ -2227,16 +2227,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "u minuti" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "na sat" @@ -2253,7 +2253,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacija" @@ -2276,14 +2276,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Greška" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL upit" @@ -2301,85 +2301,85 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Provjeri SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Dodaj novo polje" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2387,28 +2387,28 @@ msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Slijedeći" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2416,106 +2416,106 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Novi zapis" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Pregled" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacije" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Isprazni" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Štampaj" @@ -2532,102 +2532,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Rastući" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Opadajući" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortiranje" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterijum" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši polje za kriterij" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/obriši kolonu" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ažuriraj upit" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Koristi tabele" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ili" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "i" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Promijeni" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "bar jednu od riječi" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "sve riječi" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "tačan izraz" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kao regularni izraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2635,7 +2635,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodaka" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2643,49 +2643,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Obriši" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Pretraživanje baze" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Riječi se odvajaju razmakom (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2741,8 +2741,8 @@ msgstr "Izvrši upamćen upit" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2829,7 +2829,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Obustavi" @@ -2846,8 +2846,8 @@ msgstr "u upitu" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2858,7 +2858,7 @@ msgstr "Prikaz zapisa" msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" @@ -2869,7 +2869,7 @@ msgstr "Upit je trajao %01.4f sekundi" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Označeno:" @@ -2879,8 +2879,8 @@ msgstr "Označeno:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Označi sve" @@ -2921,51 +2921,51 @@ msgstr "Veza nije pronađena" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2974,69 +2974,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Sortiranje" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Komentari" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3045,12 +3045,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Baze" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3120,20 +3120,20 @@ msgstr "Korisnik" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Binarni" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 #, fuzzy msgid "Replication" msgstr "Relacije" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Promjenljive" @@ -3266,8 +3266,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3278,11 +3278,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operacije" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vrijednost" @@ -3292,67 +3292,67 @@ msgstr "Vrijednost" msgid "Table Search" msgstr "Pretraživanje" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Redosled prikaza:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL upit" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3427,14 +3427,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3684,7 +3684,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabele" @@ -3698,12 +3698,12 @@ msgstr "Tabele" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Prekoračenje" @@ -3815,7 +3815,7 @@ msgstr "" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3964,22 +3964,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Resetuj" @@ -4256,7 +4256,7 @@ msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4380,7 +4380,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipovi" @@ -4421,7 +4421,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5927,10 +5927,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6185,52 +6185,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Promeni lozinku" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nema lozinke" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6384,8 +6392,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6473,71 +6481,71 @@ msgstr "Verzija servera" msgid "authored on %1$s by %2$s" msgstr "Verzija servera" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Baza ne postoji" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Baza ne postoji" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6617,72 +6625,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s je osvežena" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6873,8 +6881,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6891,127 +6899,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7065,7 +7073,7 @@ msgstr "" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7365,7 +7373,7 @@ msgstr "Opcije tabele" msgid "Rename table to" msgstr "Promjeni ime tabele u" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7489,8 +7497,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7565,21 +7573,21 @@ msgstr "Pogrešno korisničko ime/lozinka. Ulaz nije dozvoljen." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7740,20 +7748,21 @@ msgstr "Dostupni MIME-tipovi" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Vrijeme kreiranja" @@ -7995,7 +8004,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8244,7 +8253,7 @@ msgstr "Pravljenje PDF-ova" msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Tranformacije čitača" @@ -8311,7 +8320,7 @@ msgstr "nijedno" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8322,8 +8331,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8344,32 +8353,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Promjenljiva" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Server" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8378,34 +8387,34 @@ msgstr "Bilo koji korisnik" msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8469,7 +8478,7 @@ msgstr "" msgid "Event name" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Vrsta upita" @@ -8855,7 +8864,7 @@ msgstr "Tabele nisu pronađene u bazi." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8865,7 +8874,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8912,101 +8921,101 @@ msgstr "Atributi" msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Izaberi sve" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Imena kolona" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaciona shema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "prikaz svih tabela iste širine?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Uspravno" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Napravljeno" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9014,7 +9023,7 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Uključuje/isključuje scratchboard" @@ -9323,7 +9332,7 @@ msgstr "Korisnici koji imaju pristup "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Korisnik" @@ -9463,8 +9472,8 @@ msgstr "Pregled korisnika" 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 " @@ -9529,11 +9538,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9628,7 +9637,7 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" @@ -9641,12 +9650,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" @@ -9677,14 +9686,14 @@ msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primarni" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Ključ" @@ -9694,7 +9703,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tekst ključ" @@ -9721,7 +9730,7 @@ msgstr "Relacioni pogled" msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9732,7 +9741,7 @@ msgstr "Morate izabrati bar jednu kolonu za prikaz" msgid "Add column" msgstr "Dodaj novo polje" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" @@ -9756,15 +9765,15 @@ msgstr "Poslije %s" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistike reda" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamički" @@ -9772,15 +9781,15 @@ msgstr "dinamički" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Dužina reda" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Veličina reda" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9833,16 +9842,16 @@ msgstr "Dodaj novo polje" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "Podatci o prijavi" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Zauzeće" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektivne" @@ -9883,7 +9892,7 @@ msgstr "" msgid "Move column" msgstr "Dodaj/obriši kolonu" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9892,11 +9901,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:145 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9908,36 +9917,36 @@ msgstr "" "apostrof (\"'\") u te vrijednosti, stavite obrnutu kosu crtu ispred njih (na " "primjer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10140,7 +10149,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" @@ -10452,30 +10461,30 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Polja" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10483,7 +10492,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10491,24 +10500,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s baza je uspješno odbačena." msgstr[1] "%s baza je uspješno odbačena." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10581,50 +10590,50 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspešno ponovo učitane." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10633,277 +10642,277 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo struktura" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo struktura" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Vrsta upita" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Prošireni INSERT" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Prikaži tabele" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Broj redova po strani" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Generirao" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da mijenjaš lozinku" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Prikaži tabele" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Prikaži tabele" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10911,117 +10920,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Primljeno" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Poslato" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Naredba" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11029,78 +11038,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11108,7 +11117,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11116,42 +11125,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11159,33 +11168,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11194,243 +11203,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakter set datoteke:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11438,99 +11447,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11538,18 +11547,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11557,69 +11566,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vrsta upita" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dodaj novo polje" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11628,7 +11637,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11636,18 +11645,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11655,11 +11664,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11667,89 +11676,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy msgid "Preset chart" msgstr "Promjeni ime tabele u " -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Izaberi sve" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11757,7 +11766,7 @@ msgid_plural "%d seconds" msgstr[0] "u sekundi" msgstr[1] "u sekundi" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11877,19 +11886,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globalna vrednost" @@ -12181,44 +12190,44 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generirao" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12374,16 +12383,16 @@ msgstr "Dodaj novo polje" msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" @@ -12552,38 +12561,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Verzija servera" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Verzija servera" @@ -12940,8 +12949,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13068,8 +13077,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ca.po b/po/ca.po index ffb02fde58..2a3195dc90 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-02 11:56+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Número de pàgina:" @@ -40,36 +40,36 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Cerca" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Executa" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nom de clau" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descripció" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Fes servir aquest valor" @@ -120,18 +120,18 @@ msgstr "S'ha creat la base de dades %1$s." msgid "Database comment: " msgstr "Comentaris de la base de dades: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Comentaris de la taula" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Columna" msgid "Type" msgstr "Tipus" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tipus" msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Nul" msgid "Default" msgstr "Defecte" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Defecte" msgid "Links to" msgstr "Enllaços a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Enllaços a" msgid "Comments" msgstr "Comentaris" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Comentaris" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Si" @@ -275,35 +275,35 @@ msgid "View dump (schema) of database" msgstr "Veure el bolcat (esquema) de la base de dades" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Base de dades sense taules." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Tria Tot" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "La base de dades %s s'ha copiat a %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -312,12 +312,12 @@ msgstr "" "S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per " "veure el motiu, clica %saqui%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "Taula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Fila" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Mida" @@ -347,7 +347,7 @@ msgstr "en ús" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creació" @@ -355,7 +355,7 @@ msgstr "Creació" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Darrera actualització" @@ -363,7 +363,7 @@ msgstr "Darrera actualització" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Darrera comprovació" @@ -378,7 +378,7 @@ msgstr[1] "%s taules" msgid "You have to choose at least one column to display" msgstr "Has de triar al menys una columna per mostrar" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Canviar al %sconstructor visual%s" @@ -410,9 +410,9 @@ msgstr "Taules seguides" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Base de dades" @@ -430,66 +430,66 @@ msgstr "Actualitzat" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Estat" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Acció" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostra" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Esborra les dades de seguiment per aquesta taula" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "actiu" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "no actiu" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versions" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Segueix taula" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Registre de la base de dades" @@ -505,12 +505,12 @@ msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!" msgid "Bad parameters!" msgstr "Paràmetres incorrectes!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." @@ -532,117 +532,124 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." msgid "Invalid export type" msgstr "Tipus d'exportació incorrecte" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor per la columna \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilitzar OpenStreetMaps com a capa base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Afegir un punt" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Cadena de línies" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Cercle exterior" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Cercle interior" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Afegeix una cadena de línies" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Afegeix un cercle interior" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polígon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Afegeix un polígon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Afegir geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Sortida" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Tria «GeomFromText» de la columna \"Funció\" i enganxa la cadena següent al " "camp \"Valor\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,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:400 +#: import.php:404 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 " @@ -661,29 +668,29 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [a@./Documentation.html#faq1_16]PFC(FAQ) 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No es pot convertir el joc de caracters de l'arxivu sense la biblioteca " "corresponent" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importació finalitzada correctament, %d consultes executades." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -691,7 +698,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:513 +#: import.php:517 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." @@ -700,9 +707,9 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "La vostra comanda SQL ha estat executada amb èxit" @@ -717,7 +724,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." @@ -727,7 +734,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada." msgid "Do you really want to execute \"%s\"?" msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -767,7 +774,7 @@ msgstr "Afegir Index" msgid "Edit Index" msgstr "Editar índex" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Afegeix %d columna(es) a l'index" @@ -817,24 +824,24 @@ msgstr "Tanca" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Gràfic de tràfic en viu" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Gràfic de conexions/processos en viu" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Gràfic de consultes en viu" @@ -844,24 +851,24 @@ msgstr "Dades estàtiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -881,7 +888,7 @@ msgstr "Tràfic del servidor (en KiB)" msgid "Connections since last refresh" msgstr "Connexions des de la darrera actualització" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processos" @@ -899,7 +906,7 @@ msgstr "Consultes des de la darrera actualització" msgid "Questions (executed statements by the server)" msgstr "Consultes (sentències executades pel servidor)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Consulta d'estadístiques" @@ -946,13 +953,13 @@ msgstr "Intercanvi del sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1004,32 +1011,32 @@ msgstr "Bytes enviats" msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Connexions" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1043,11 +1050,11 @@ msgstr "%d taula(es)" msgid "Questions" msgstr "Consultes" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Configuració" @@ -1068,12 +1075,12 @@ msgid "Please add at least one variable to the series" msgstr "Afegeix al menys una variable a la serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Res" @@ -1173,7 +1180,7 @@ msgstr "Canviar configuracions" msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Títol del gràfic" @@ -1262,7 +1269,7 @@ msgstr "Explicar sortida" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Temps" @@ -1359,8 +1366,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1578,12 +1585,12 @@ msgstr "Temps d'execució de la consulta" msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Desa" @@ -1641,8 +1648,8 @@ msgstr "Resultats de consultes" msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignora" @@ -1756,7 +1763,7 @@ msgstr "Actualitza fila(es)" msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Genera" @@ -1855,63 +1862,63 @@ msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Des" @@ -1949,32 +1956,32 @@ msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Dis" @@ -2088,16 +2095,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per segon" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per hora" @@ -2114,7 +2121,7 @@ msgstr "Màx: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentació" @@ -2137,14 +2144,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Error" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Consulta SQL" @@ -2162,211 +2169,211 @@ msgstr "Consulta SQL" msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al validador SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Executa consulta" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Refresca" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valida l'SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Editar aquesta consulta en línia" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Perfils" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Diu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Falta paràmetre:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Inici" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Pàgina anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Pàgina següent" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la base de dades "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Estructura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insereix" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Navega" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacions" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Selecciona des del directori de pujada d'arxius del servidor web %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Buida" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimeix" @@ -2385,105 +2392,105 @@ msgstr "" msgid "Font size" msgstr "Tamany de lletra" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascendent" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descendent" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Classificació" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criteris" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Afegeix/esborra criteris de files" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Afegeix/esborra columnes" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Actualitza consulta" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Usa Taules" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "O" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "I" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Sup" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificar" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "totes les paraules" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "la frase exacta" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "com a expressió regular" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultats de la recerca per a \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultat" msgstr[1] "Total: %s resultats" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2492,44 +2499,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s resultat a la taula %s" msgstr[1] "%s resultats a la taula %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Esborra" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Cerca a la base de dades" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paraules o valors a cercar (comodí: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Trobat:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Paraules separades per un espai (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dins les taules:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dins la columna:" @@ -2574,8 +2581,8 @@ msgstr "Capceleres cada %s files" msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2652,7 +2659,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Finalitzar" @@ -2671,8 +2678,8 @@ msgstr "en consulta" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2684,7 +2691,7 @@ msgstr "Mostrant registres" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" @@ -2695,7 +2702,7 @@ msgstr "La consulta tarda %01.4f seg" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Amb marca:" @@ -2705,8 +2712,8 @@ msgstr "Amb marca:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Marcar-ho tot" @@ -2744,16 +2751,16 @@ msgstr "No s'ha trobat l'enllaç" msgid "Too many error messages, some are not displayed." msgstr "Masses missatges d'error, alguns no es mostren." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "L'arxiu no ha estat pujat." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2761,27 +2768,27 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2789,11 +2796,11 @@ msgstr "" "Error movent l'arxiu pujat, consulta la [a@./Documentation." "html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Error moven l'arxiu pujat." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "No es pot llegir l'arxiu pujat (i mogut)." @@ -2802,13 +2809,13 @@ msgstr "No es pot llegir l'arxiu pujat (i mogut)." msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." @@ -2816,56 +2823,56 @@ msgid "Javascript must be enabled past this point" msgstr "" "A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "No s'ha definit l'índex!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexos" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Ordenació" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comentari" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "S'ha esborrat la clau principal" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "S'ha esborrat l'índex %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2876,12 +2883,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bases de dades" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" @@ -2949,18 +2956,18 @@ msgstr "Usuaris" msgid "Synchronize" msgstr "Sincronitza" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Registre binari" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicació" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variables" @@ -3099,8 +3106,8 @@ msgstr "" "no seran persistents després d'actualitzar la pàgina. Comprova si " "l'estructura de la taula ha canviat." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funció" @@ -3110,11 +3117,11 @@ msgstr "Funció" msgid "Operator" msgstr "Operador" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valor" @@ -3122,62 +3129,62 @@ msgstr "Valor" msgid "Table Search" msgstr "Cerca de taules" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Edita/Insereix" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Tria les columnes (una com a mínim):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Afegeix condicions de recerca (cos de la clàusula \"where\" ):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Número de registres per pàgina" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordre del llistat:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Utilitza aquesta columna per etiquetar cada punt" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Màxim nombre de files a dibuixar" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Navega valors externs" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Criteri de cerca addicionals" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Fer una \"consulta segons exemple\" (comodí: \"%\") per a dos columnes " "diferents" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Veure / editar els punts" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Cóm utilitzar" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Reinicia l'ampliació" @@ -3250,14 +3257,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3510,7 +3517,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Taules" @@ -3524,12 +3531,12 @@ msgstr "Taules" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dades" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Defragmentat" @@ -3640,7 +3647,7 @@ msgstr "Obert" msgid "Closed" msgstr "Tancat" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3778,22 +3785,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Aquesta opció està desactivada, no s'aplicarà a la teva configuració" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Estableix valor: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaura el valor per defecte" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permet als usuaris configurar aquest valor" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reinicia" @@ -4085,7 +4092,7 @@ msgstr "Joc de caràcters de l'arxiu" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4194,7 +4201,7 @@ msgstr "Etiqueta de clau" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipus MIME" @@ -4230,7 +4237,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Usa -backquotes- amb noms de taules i columnes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modus de compatibilitat SQL" @@ -5828,10 +5835,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Necessita activar el SQL Validator" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6100,7 +6107,7 @@ msgstr "No es troba l'extensió %s. Comprova la configuració de PHP." msgid "possible deep recursion attack" msgstr "possible atac de recursivitat profunda" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6108,48 +6115,56 @@ msgstr "" "El servidor no està responent (o el sòcol del servidor local MySQL no està " "configurat correctament)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "El servidor no respon." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Comprova els permisos del directori que conté la base de dades." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalls..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexió de l'usuari de control ha fallat, tal com està definida ara a la " "configuració." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Canvi de contrasenya" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sense contrasenya" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Reescriu" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Contrasenya Hashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatible amb MySQL 4.0" @@ -6280,12 +6295,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:295 @@ -6363,7 +6378,7 @@ msgstr "Crea versió %s de %s.%s" msgid "authored on %1$s by %2$s" msgstr "Crea versió %s de %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6373,35 +6388,35 @@ msgstr "" "permesa o es tracta d'un error conegut dels navegadors basats en WebKit " "(Safari, Google Chrome, Arora, etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Format de l'arxiu importat" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "L'arxiu s'està processant, per favor, sigues pacient." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6409,30 +6424,30 @@ msgstr "" "Per favor, sigues pacient, l'arxiu s'està carregant. Els detalls de la " "càrrega no estàn disponibles." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Important al servidor actual" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Important a la base de dades \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Important a la taula \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Arxiu a importar:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "L'arxiu pot ser comprimit (%s) o descomprimit." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6520,71 +6535,71 @@ msgstr "" "El tamany de memòria cau que InnoDB fa servir per desar les dades i indexs " "de les seves taules." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Estat InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Ús del grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pàgines" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Pàgines lliures" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Pàgines brutes" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pàgines contenint dades" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pàgines per a purgar" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Pàgines ocupades" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Pàgines inalterables" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Activitat de la Memòria intermitja" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Peticions de lectura" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Peticions d'escriptura" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Lectures omeses" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Esperes d'escriptura" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Lectures omeses en %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Esperes d'escriptura en %" @@ -6819,8 +6834,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -6837,128 +6852,128 @@ msgstr "El Blog de PrimeBase XT per Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Veure el contingut d'una estructura prement sobre el seu nom" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç " "\"Opcions\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Editar estructura seguint l'enllaç \"Estructura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Anar a la base de dades %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Editar configuració de %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Anar a la taula: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Anar a la vista: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Amaga" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" " A causa de la seva longitud,
aquesta columna no pot ser editable" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binari - no editeu" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "directori de pujada d'arxius del servidor web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7002,7 +7017,7 @@ msgstr "Afegir prefix de taula" msgid "Add prefix" msgstr "Afegir prefix" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7291,7 +7306,7 @@ msgstr "Opcions de taula" msgid "Rename table to" msgstr "Reanomena les taules a" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" @@ -7405,8 +7420,8 @@ msgstr "Benvingut a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -7484,21 +7499,21 @@ msgstr "Usuari i/o clau erronis. Accés denegat." msgid "Can not find signon authentication script:" msgstr "No es pot trobar l'script d'ordres d'inici de sessió d'autenticació:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "L 'arxiu %s no conté cap identificació de clau" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Error a l'autenticació de maquinari" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Cap clau d'autenticació vàlida endollada" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autenticant..." @@ -7635,20 +7650,21 @@ msgstr "Mostra tipus MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Temps de generació" @@ -7911,7 +7927,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Comptador de columnes incorrecte en l'entrada CSV a la línia %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nom de taula" @@ -8170,7 +8186,7 @@ msgstr "Creació de PDFs" msgid "Displaying Column Comments" msgstr "Mostrant comentaris de les columnes" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformació del navegador" @@ -8243,7 +8259,7 @@ msgstr "Desmarcar tot" msgid "Slave configuration" msgstr "Configració de l'esclau" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Canvia o reconfigura el servidor mestre" @@ -8256,8 +8272,8 @@ msgstr "" "configuració (my.cnf). Si no, afegeix la línia següent a la secció [mysqld] :" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8277,15 +8293,15 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID de Servidor" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8293,17 +8309,17 @@ msgstr "" "Només els servidors iniciats amb l'opció --report-host=nom_de_servidor es " "mostren en aquesta llista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Qualsevol usuari" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8312,27 +8328,27 @@ msgstr "Qualsevol usuari" msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8341,7 +8357,7 @@ msgstr "" "Quan s'utilitza la taula Host, aquest camp s'ignora i es fan servir els " "valors enmagatzemats a la taula Host en lloc seu." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Genera una Contrasenya" @@ -8400,7 +8416,7 @@ msgstr "Detalls" msgid "Event name" msgstr "Nom d'esdeveniment" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tipus d'event" @@ -8741,7 +8757,7 @@ msgstr "No s'ha trobat un esdeveniment amb nom %1$s a la base de dades %2$s" msgid "There are no events to display." msgstr "No hi ha esdeveniments per mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8750,7 +8766,7 @@ msgstr "No hi ha esdeveniments per mostrar." msgid "The %s table doesn't exist!" msgstr "La taula %s no existeix!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8796,91 +8812,91 @@ msgstr "Atributs" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Crea una nova pàgina" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nom de pàgina" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Disseny automàtic basat en" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relacions internes" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "CLAU EXTERNA" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Tria una pàgina per editar" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Selecciona la pàgina" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Tria Taules" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nom de les columnes" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Mostra l'esquema relacional" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Selecciona el tipus d'Exportació Relacional" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostra graella" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostra color" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostra dimensió de les taules" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostrar totes les taules amb la mateixa amplada" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Diccionari de Dades" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Només mostrar claus" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Horitzontal" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Vertical" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientació" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Tamany de paper" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8888,7 +8904,7 @@ msgstr "" "La pàgina actual té referències a taules que no existeixen. Vols esborrar " "aquestes referències?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Canvia l' scratchboard" @@ -9191,7 +9207,7 @@ msgstr "Usuaris amb accés a "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Usuari" @@ -9329,8 +9345,8 @@ msgstr "Vista global d'usuaris" 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 " @@ -9391,11 +9407,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -9489,10 +9505,10 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" @@ -9505,12 +9521,12 @@ msgstr "El seguiment està actiu." msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" @@ -9538,14 +9554,14 @@ msgid "Column %s has been dropped" msgstr "S'ha esborrat la columna %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Principal" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Índex" @@ -9555,7 +9571,7 @@ msgid "Spatial" msgstr "Espacial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Text sencer" @@ -9581,7 +9597,7 @@ msgstr "Vista de relacions" msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." @@ -9589,7 +9605,7 @@ msgstr "Has d'afegir al menys una columna." msgid "Add column" msgstr "Afegeix columna(es)" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Afegeix %s columna(es)" @@ -9612,15 +9628,15 @@ msgstr "Darrere de %s" msgid "Create an index on  %s columns" msgstr "Crea un índex de %s columnes" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Estadística de files" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "estàtic" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinàmic" @@ -9628,15 +9644,15 @@ msgstr "dinàmic" msgid "partitioned" msgstr "particionat" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Tamany de fila" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Mida de fila" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "AUTOINDEX Següent" @@ -9684,15 +9700,15 @@ msgstr "Afegir índex espacial (SPATIAL)" msgid "Add FULLTEXT index" msgstr "Afegir índex FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informació" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Utilització d'espai" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efectiu" @@ -9728,7 +9744,7 @@ msgstr "" msgid "Move column" msgstr "Treu columna(es)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9737,11 +9753,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:145 msgid "Transformation options" msgstr "Opcions de transformació" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9753,34 +9769,34 @@ msgstr "" "apòstrof (\"'\") entre aquests valors, posa una barra invertida devant (per " "exemple '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Dades ENUM o SET massa llargues?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Obté més espai d'edició" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Cap" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Com definit:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Darrere de %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definició de PARTICIÓ" @@ -9989,7 +10005,7 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "No hi ha bases de dades" @@ -10269,29 +10285,29 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Arxius" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostra Consultes completes" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nom del registre" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posició" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posició original" @@ -10299,7 +10315,7 @@ msgstr "Posició original" msgid "Character Sets and Collations" msgstr "Jocs de Caràcters i ordenacions" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10307,24 +10323,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s bases de dades s'han esborrat correctament." msgstr[1] "%s bases de dades s'han esborrat correctament." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Estadístiques de les bases de dades" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replicació del mestre" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replicació de l'esclau" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activa Estadístiques" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10394,41 +10410,41 @@ msgstr "Els permisos s'han recarregat correctament." msgid "Unknown error" msgstr "Error desconegut" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Incapaços de connectar amb el mestre %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "No es pot canviar el mestre" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "S'ha canviat correctament el servidor mestre a %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10437,11 +10453,11 @@ msgstr "" "Aquest servidor no està configurat com a mestre en un procés de replicació. " "Vols configurar-lo ?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configuració del mestre" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10455,19 +10471,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:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replica totes les bases de dades; Ignora:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignora totes les bases de dades; Replica:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Selecciona bases de dades:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10475,7 +10491,7 @@ msgstr "" "Ara, afegeix les següents línies al final de la secció [mysqld] del teu " "arxiu -my.cnf- i després reinicia el servidor MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10485,82 +10501,82 @@ msgstr "" "de veure un missatge que t'informi que aquest servidor està " "configurat com a mestre" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "El fil SQL de l'esclau SQL no va!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "El fil IO de l'esclau IO no va!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Veure la taula d'estat de l'esclau" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sincronitza les bases de dades amb el mestre" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Control esclau:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Inici total" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Parada total" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reinicia l'esclau" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Inicia només el fil SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Atura només el fil SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Inicia només el fil IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Atura només el fil IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Gestió d'errors:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Saltar errors podria donar lloc a falta de sincronització entre mestre i " "esclau!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Salta l'error actual" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Salta el següent" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "errors." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10569,132 +10585,132 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Gestor" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Memòria cau de consultes" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Fils" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dades temporals" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Insercions demorades" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Memòria cau de claus" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Unions" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Classificant" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordinador de transaccions" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Sincronitza (tanca) totes les taules" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Mostra taules obertes" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Mostra servidors esclaus" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Mostra l'estat d'esclaus" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Buida la memòria cau de consultes" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informació d'execució" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Totes les variables d'estat" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitorització" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Assessorament" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Nombre de files:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Velocitat de refresc: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtres" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Incloent la paraula:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Mostra només valors d'alerta" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrar per categoria..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Mostra valors sense format" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Enllaços relacionats:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Executar analitzador" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instruccions" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10702,7 +10718,7 @@ msgstr "" "El sistema de consells pot proporcionar recomanacions sobre les variables " "del servidor mitjançant l'anàlisi de les variables d'estat del servidor." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10712,7 +10728,7 @@ msgstr "" "càlculs senzills i regles generals que no necessàriament s'apliquen al seu " "sistema." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10723,7 +10739,7 @@ msgstr "" "Establir ajustaments incorrectes pot tenir un efecte molt negatiu en el " "rendiment." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10734,32 +10750,32 @@ msgstr "" "si no hi ha una millora clarament mesurable." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Consultes des de l'inici: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Sentències" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "tràfic de xarxa des de l'inici: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "Aquest servidor MySQL ha estat actiu durant %1$s. Es va iniciar el %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10767,19 +10783,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Aquest servidor MySQL treballa com a mestre en un procés de " "replicació ." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Aquest servidor MySQL treballa com a esclau en un procés de " "replicació ." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10787,11 +10803,11 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10799,35 +10815,35 @@ msgstr "" "En un servidor ocupat, els comptadors de bytes poden excedir el seu tamany, " "llavors les estadístiques donades pel servidor MySQL poden ser incorrectes." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Rebut" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Enviat" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Avortat" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Ordre" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10835,11 +10851,11 @@ msgstr "" "El nombre de connexions que van ser avortades pel fet que el client va morir " "sense tancar la connexió correctament." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "La quantitat d'intents fallits de connexió al servidor MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10849,17 +10865,17 @@ msgstr "" "però que excedeixen el valor de binlog_cache_size i usen un arxiu temporal " "per desar elements de la transacció." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El nombre de transaccions que han fet servir el registre binari temporal." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "El nombre d'intents de connexió (amb èxit o no) amb el servidor MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10871,11 +10887,11 @@ msgstr "" "incrementar el valor de tmp_table_size per fer que les taules temporals " "treballin en memòria en lloc de treballar en disc." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10883,7 +10899,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10891,7 +10907,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10899,23 +10915,23 @@ msgstr "" "El nombre de gestors de fils de INSERT DELAYED en ús. Cada taula diferent ón " "s'usa INSERT DELAYED té el seu propi fil." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "El nombre de vegades que s'ha esborrat una fila d'una taula." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10925,7 +10941,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10935,7 +10951,7 @@ msgstr "" "és alt, suggereix que el servidor està fent moltes cerques d'índex complet; " "per exemple, SELECT col1 FROM taula, assumint que col1 és indexat." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10944,7 +10960,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10954,7 +10970,7 @@ msgstr "" "Aixó s'incrementa si s'està consultant una columna d'index amb limitació de " "rang o si s'està fent una cerca d'index." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10963,7 +10979,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10975,7 +10991,7 @@ msgstr "" "Probablement tens moltes consultes que fan que MySQL cerqui les taules " "senceres o bé hi ha joins que no fan servir les claus acuradament." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10987,37 +11003,37 @@ msgstr "" "taules no estàn indexades acuradament o bé les consultes no estàn fetes per " "aprofitar les avantatges dels índexos definits." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "El nombre de peticions per a actualitzar una fila en una taula." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "El nombre de peticions per a insertar una fila en una taula." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El nombre de pàgines a la memòria cau que s'han demanat per ser " "actualitzades." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11027,7 +11043,7 @@ msgstr "" "pàgines s'estàn llegint o escrivint actualment o no es poden actualitzar o " "esborrar per qualsevol altra raó." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11039,11 +11055,11 @@ msgstr "" "Aquest valor es pot calcular com Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11051,7 +11067,7 @@ msgstr "" "El nombre de lectures aleatòries d'InnoDB iniciades. Aixó passa quan una " "consulta cerca en una gran part de una taula però en ordre aleatori." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11059,11 +11075,11 @@ msgstr "" "El nombre de lectures secuencials d'InnoDB iniciades. Aixó passa quan InnoDB " "fa una cerca secuencial a la taula sencera." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "El nombre de peticions de lectures lògiques que InnoDB ha fet." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11071,7 +11087,7 @@ msgstr "" "El nombre de peticions de lectures lògiques que InnoDB no pot satisfer de la " "memòria cau i ha de fer lectures de pàgines individuals." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11085,55 +11101,55 @@ msgstr "" "comptador mostra instàncies d'aquestes esperes. Si el tamany de la memòria " "cau és adequat, aquest valor sól ser petit." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "El nombre d'escriptures fetes a la memòria cau d'InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "El nombre de dobles escriptures realitzades i el nombre de pàgines escrites " "per a aquest propòsit." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11141,35 +11157,35 @@ msgstr "" "El nombre d'esperes fetes degut al petit tamany de la memòria intermèdia del " "registre i a esperar a que s'actualitzés abans de continuar." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "El nombre d'escriptures físiques a l'arxiu de registre." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "El nombre d'escriptures fsync() fetes a l'arxiu de registre." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11178,51 +11194,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El temps promig en fer un bloqueig de fila, en milisegons." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "El temps total emprat en fer bloquejos de files, en milisegons." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El temps màxim en fer un bloqueig de fila, en milisegons." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "El nombre de vegades que un bloqueig de fila ha estat en espera." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11231,7 +11247,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11239,7 +11255,7 @@ msgstr "" "El nombre de blocs no usats a la memòria cau de les claus. Aquest valor es " "pot fer servir per saber quànta memòria cau de les claus s'utilitza." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11248,17 +11264,17 @@ msgstr "" "El nombre de blocs usats a la memòria cau de les claus. Aquest valor és la " "marca indicativa del màxim nombre de blocs usats mai a l'hora." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format de l'arxiu importat" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "El nombre de peticions de lectura d'un bloc de clau de la memòria cau." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11268,27 +11284,27 @@ msgstr "" "gran, llavors el valor de key_buffer_size probablement és massa petit. El " "rati de la memòria cau es pot calcular com Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" "El nombre de peticions d'escriptura d'un bloc de clau a la memòria cau." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "El nombre d'escriptures físiques d'un bloc de clau a disc." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11299,7 +11315,7 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11307,11 +11323,11 @@ msgstr "" "El nombre màxim de connexions que han estat en ús a la vegada des de que el " "servidor s'ha iniciat." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El nombre de files esperant a ser escrites en cues INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11319,20 +11335,20 @@ msgstr "" "El nombre de taules que han estat obertes. Si el nombre de taules obertes és " "gran, probablement el valor de memòria cau de taula és massa petit." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El nombre de fluxes que estàn oberts (usats principalment per a registre)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11342,19 +11358,19 @@ msgstr "" "números alts poden indicar problemes de fragmentació, que poden ser resolts " "mitjançant una ordre FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "La quantitat de memòria liure per a memòria cau de consultes." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11367,7 +11383,7 @@ msgstr "" "l'estratègia menys recentment usada(least recently used - LRU) per decidir " "quines consultes treure de la memòria cau." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11375,19 +11391,19 @@ msgstr "" "El nombre de consultes no enviades a la memòria cau (no enviables, o no " "enviades degut al paràmetre query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "El nombre total de blocs a la memòria cau de consultes." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'estat de la replicació a prova d'errades (no implementat encara)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11395,12 +11411,12 @@ msgstr "" "El nombre de joins que no usen indexs. Si aquest valor no és 0, s'haurien de " "comprovar acuradament els indexs de les taules." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "El nombre de joins que han usat un rang de cerca en una taula de referència." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11409,7 +11425,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11417,16 +11433,16 @@ msgstr "" "El nombre de joins que han usat rangs a la primera taula. (Normalment no és " "crític si el valor no és molt gran.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "El nombre de joins que han fet una cerca a la primera taula sencera." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El nombre de taules temporals obertes actualment pel fil esclau de SQL." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11434,25 +11450,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Aixó és ACTIU -ON- si aquest servidor és un esclau que està connectat a un " "mestre." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "El nombre de fils que han tardat més que slow_launch_time segons a crear." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "El nombre de consultes que han tardat més que long_query_time segons." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11462,23 +11478,23 @@ msgstr "" "hagut de fer. Si aquest valor és gran, s'hauria de considerar incrementar el " "valor de la variable de sistema sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "El nombre de vegades que un bloqueig de taula s'ha fet immediatament." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11491,7 +11507,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11501,11 +11517,11 @@ msgstr "" "comptar com Threads_created/Connections. Si aquest valor és vermell s'hauria " "d'augmentar el valor de thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11516,49 +11532,49 @@ msgstr "" "gran, pots voler augmentar el valor de thread_cache_size. (Normalment això " "no dóna una millora de rendiment notable si es té una bona aplicació de fil.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "El seguiment no està actiu." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Començar monitorització" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instruccions/configuració" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Reorganització acabada/edició de gràfics" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Afegir gràfic" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Reorganitzar/editar gràfics" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Velocitat de refresc" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Columnes del gràfic" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Ordenació del gràfic" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11566,15 +11582,15 @@ msgstr "" "La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " "navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Restaura el valor per defecte" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instruccions de Monitorització" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11588,7 +11604,7 @@ msgstr "" "general_log habilitat. Noteu però, que la general_log produeix una gran " "quantitat de dades i augmenta la càrrega del servidor fins en un 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11601,11 +11617,11 @@ msgstr "" "MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " "de servidor." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Utilitzant el monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11616,7 +11632,7 @@ msgstr "" "secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " "en cada gràfic corresponent." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11629,11 +11645,11 @@ msgstr "" "consultes agrupades, on podràs clicar en qualsevol de les instruccions " "SELECT per analitzar-la amb més detall." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Tingueu en compte:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11646,87 +11662,87 @@ msgstr "" "lapse de temps petit i per desactivar el general_log i buidar la taula una " "vegada que el monitoratge no es requereixi més." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Gràfic predefinit" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variable(s) d'estat" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Comunment monitoritzat" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "o escriu el nom de variable:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Mostra com a valor diferencial" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Afegir unitat als valors" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Afegir aquesta serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Buidar sèrie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Series al gràfic:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Estadístiques del registre" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Rang de temps seleccionat:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Elimina dades variables en les instruccions INSERT per a una millor agrupació" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Tria de quin registre vols que es generin les estadístiques." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Els resultats s'agrupen pel text de la consulta." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analitzador de consultes" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segon" msgstr[1] "%d segons" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11847,19 +11863,19 @@ msgstr "" "La base de dades destinació s'ha sincronitzat completament amb la base de " "dades origen. L'origen restarà sense canvis." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Errada a la configuració de la variable" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variables i configuracions del servidor" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valor de sessió" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valor global" @@ -12125,8 +12141,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" -"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" +"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:310 @@ -12154,8 +12170,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el " -"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el %" +"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12201,42 +12217,42 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." msgid "Wrong data" msgstr "Dades incorrectes" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Resultat SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generat per" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12369,18 +12385,18 @@ msgstr "Editar índex" msgid "Index name:" msgstr "Nom d'índex:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipus d'índex:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Afegeix a l'índex %s columna(es)  " @@ -12548,41 +12564,41 @@ msgstr "Exporta com %s" msgid "Show versions" msgstr "Mostra versions" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Desactiva el seguiment per %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Desactiva ara" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Activa el seguiment per %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Activa ara" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crea versió %s de %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Crea versió" @@ -12974,8 +12990,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "La taxa actual de memòria lluire del cau de consultes respecte la mida total " "és de %s%%. Hauria de estar per sobre de 80%%" @@ -13133,8 +13149,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de totes les ordenacions causen taules temporals, aquest valor ha de " "ser inferior al 10%%." @@ -13543,8 +13559,8 @@ msgstr "" #, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" msgstr "" -"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del " -"95%%" +"Bloquejos immediats de taula: %s%%, aquest valor ha d'estar per sobre del 95%" +"%" #: libraries/advisory_rules.txt:348 msgid "Table lock wait rate" diff --git a/po/ckb.po b/po/ckb.po index 2a20cab1d2..1e0f543926 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-18 12:25+0200\n" "Last-Translator: Ahmed Ameen \n" "Language-Team: Kurdish Sorani \n" -"Language: ckb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ckb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -25,11 +25,11 @@ msgstr "" msgid "Show all" msgstr "پیشاندانی هەموو" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "ژمارەی پەڕە:" @@ -43,36 +43,36 @@ msgstr "" "ئەمو پەڕەیە ناتوانرێت تازە بکرێتەوە، لەوانەیە پەڕە کۆنەکەت داخستبێت، یان " "ڕێکخستنی پاراستنی وێبگەڕەکەت وا ڕیکخراوە کە ڕی لە تازەکردنەوە بگریت" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "گەڕان" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -80,28 +80,28 @@ msgstr "گەڕان" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "بڕۆ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "کلیلەناو" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "پێناسە" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "ئەم نرخە هەڵبژێرە" @@ -123,18 +123,18 @@ msgstr "بنکەی دراوەی %1$s درووستکرا." msgid "Database comment: " msgstr ":تێبینی بنکەی دراوە" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "تێبینیەکانی خشتە" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -142,18 +142,18 @@ msgstr "تێبینیەکانی خشتە" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -170,11 +170,11 @@ msgstr "ستون" msgid "Type" msgstr "جۆر" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -186,9 +186,9 @@ msgstr "جۆر" msgid "Null" msgstr "بەتاڵ" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -201,8 +201,8 @@ msgstr "بەتاڵ" msgid "Default" msgstr "بنەڕەت" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -210,11 +210,11 @@ msgstr "بنەڕەت" msgid "Links to" msgstr "بەستەر دەکات بۆ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -223,12 +223,12 @@ msgstr "بەستەر دەکات بۆ" msgid "Comments" msgstr "بۆچوون" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -239,23 +239,23 @@ msgstr "بۆچوون" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "نەخێر" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -267,8 +267,8 @@ msgstr "نەخێر" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بەڵێ" @@ -278,33 +278,33 @@ msgid "View dump (schema) of database" msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى دراوە" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراو" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "هەڵبژاردنی هەموو" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "هەلنەبژاردنی هەموو" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "ناوی بنکەی دراوە بەتاڵە!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "ناوی بنکەی دراوەی %1$s گۆڕدرا بۆ %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی دراوەی %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -312,12 +312,12 @@ msgid "" msgstr "" "شێوەی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %shere%s" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "خشتە" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "خانە" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "قەبارە" @@ -347,7 +347,7 @@ msgstr "بەکار دەبرێت" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "درووستکردن" @@ -355,7 +355,7 @@ msgstr "درووستکردن" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "دواترین نوێکردنەوە" @@ -363,7 +363,7 @@ msgstr "دواترین نوێکردنەوە" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "دواترین پشکنین" @@ -378,7 +378,7 @@ msgstr[1] "%s خشتەکان" msgid "You have to choose at least one column to display" msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "گۆڕین بۆ %svisual builder%s" @@ -410,9 +410,9 @@ msgstr "شوێنکەوتەی خشتە" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "بنکەی دراو" @@ -430,67 +430,67 @@ msgstr "بارکراوە" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "ڕەوش" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "کردار" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "پیشاندان" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "سڕینەوە داتا شوێنکەوتووەکان لەم خشتەیەدا" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "فڕیدان" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "چالاک" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ناچالاکە" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "وەشانەکان" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "ڕاپۆرتە شوێنکەتووەکان" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "وێنەی هەنووکەیی پێکهاتە" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "خشتە شوێن نەکەوتوەکان" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "شوێنکەوتنی خشتە" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "پێشینەی کارکردی بنکەی زانیاری" @@ -507,12 +507,12 @@ msgstr "دەستنیشانکردنی جۆری هەناردن بۆ پاشەکەو msgid "Bad parameters!" msgstr "ڕاگه‌یێنە هەڵەکان!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "شوێنی پێویست بۆ پاشەکەوت کردنی فایل %s ." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -525,7 +525,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "وێبڕاژه‌كار مۆڵەتی پاشه‌كه‌وت کردنی فایلی %s نییە ." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "زانیاری وەدەست هاتوو لە فایلی %s پاشەکەوت کرا." @@ -534,118 +534,125 @@ msgstr "زانیاری وەدەست هاتوو لە فایلی %s پاشەکەو msgid "Invalid export type" msgstr "هەناردنی ئەم جۆرە ڕێگەپێدراو نییە" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "نرخی ستوون \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 #, fuzzy msgid "Use OpenStreetMaps as Base Layer" msgstr "بەکارهێنانی OpenStreetMaps وەک چینی بنچینەیی." -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "ئەندازەزانی" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "خاڵ" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "خاڵ %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "زیادکردنی خاڵ" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "ڕیزبه‌ندی هێڵی" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "ئەڵفەی دەرەکی" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "ئەڵقەی ناوەکی" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "زیاد کردنی ڕیزبەندە هێڵ" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "زیاد کردنی ئەڵقەیەکی ناوەکی" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "فرە گۆشە" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "زیاد کردنی فرە گۆشەیەک" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "زیادکردنی ئەندازەگەری" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "دەرچە" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "هەڵبژاردەی \"GeomFromText\" لە ستوونی \"Function\" هەڵبژێرن وە ڕیزبەنی " "خوارەوە لە خانەی \"نرخ(value)\" داخڵ بکەن." -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "لەوانەیە ئێوە هەوڵتان دابێت فایلێک بە قەبارەیەکی زۆر بار بکەن.تکایە بۆ ڕیگە " "چارەیەک بۆ ئەم سنوردار کردنە سەردانی %sبەڵگەسازی%s بکەن." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "پیشاندانی شوێندۆز" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "شوێندۆز سڕایەوە" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -654,7 +661,7 @@ msgstr "" "ئێوە فایلێک بە پەستێنەر سازێکی پاڵپشتی نەکراو بار ئەکەن (%s).لەوانەیە لە " "ڕێکخستنەکان ناچالاک بێت وە یان پاڵپشتی بەردەست نییە بۆ ئەم فایلە." -#: import.php:400 +#: import.php:404 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 " @@ -664,26 +671,26 @@ msgstr "" "لە ڕێژە دیاری کراوەکە زیاترە. سەردانی [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a] بکەن." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "ناکرێت فایلەکانی نوسە بگۆڕدرێن بە بێ نوسەى کتێبخانەی تایبەت بەم کارە" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "هەڵە لە بارکردنی پێوەکراەکان, تکایە فۆناغەکانی دامەزراندن بپشکنن!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "شوێندۆز %s دروستکرا" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "داخڵ کردنی زانیاریەکان بە سەرکەوتوویی بە کۆتا هات، %d پرسگە دامەزرا ." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -692,15 +699,15 @@ msgstr "" "بینن، فایلی مەبەست دووبارە تۆمار بکەن تاکوو درێژە بە داخڵ کردنی زانیاریەکان " "بدەن." -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -714,7 +721,7 @@ msgstr "گەڕانەوە" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -723,7 +730,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -763,7 +770,7 @@ msgstr "زیادکردنی نیشاندەر" msgid "Edit Index" msgstr "چاکردنی نیشاندەر" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -814,24 +821,24 @@ msgstr "داخستن" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "چاکردن" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -841,24 +848,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "سەرجەم" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -878,7 +885,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -896,7 +903,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -938,13 +945,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -996,32 +1003,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1035,11 +1042,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1060,12 +1067,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "هیچ" @@ -1158,7 +1165,7 @@ msgstr "" msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1238,7 +1245,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "کات" @@ -1328,8 +1335,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "هێنان" @@ -1540,12 +1547,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "پاشەکەوتکردن" @@ -1601,8 +1608,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1701,7 +1708,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1798,63 +1805,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1892,32 +1899,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2030,16 +2037,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "لە چرکەیەک دا" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "لە خولەکێک دا" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "لە کاتژمێرێکدا" @@ -2056,7 +2063,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "به‌ڵگه‌سازی" @@ -2079,14 +2086,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "هەڵە" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "داواکاری SQL" @@ -2104,210 +2111,210 @@ msgstr "داواکاری SQL" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "ناردنی پرس" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "گەڕۆک" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "بەتاڵ" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2324,150 +2331,150 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "لە کۆتایی بۆ سەرەتا" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "ڕیزکردن" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "مەرج" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "زۆرکردن/سڕینەوەی خانەی مەرج" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "زۆرکردن/سڕینەوەی خانە" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "نوێکردنەوەی پرس" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "خشتە بەکار ببە" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "یان" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "و" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "سڕینەوە" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "دەستکاری" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "لانیکەم یەکێک لە وشەکان" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "هەموو وشەکان" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "دەقاودەقی ڕستە" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ئەنجامی گەڕان بۆ \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "سڕینەوە" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "گەڕان لە بنکەی دراو" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "دۆزینەوە:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "وشەکان بە هێمای بۆشایی جیا دەکرێنەوە (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy msgid "Inside tables:" msgstr "لەناو خشتە:\n" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "لە نێو خشتەی:" @@ -2512,8 +2519,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2590,7 +2597,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2607,11 +2614,11 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 بکە ." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2621,7 +2628,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2632,7 +2639,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" @@ -2642,8 +2649,8 @@ msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "پشکنینی هەموو" @@ -2681,51 +2688,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2734,66 +2741,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "ڕێکخستن" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2802,12 +2809,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2875,18 +2882,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "دووپاتکاری" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3015,8 +3022,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3026,11 +3033,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3038,60 +3045,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3164,14 +3171,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3414,7 +3421,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3428,12 +3435,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3535,7 +3542,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3673,22 +3680,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3953,7 +3960,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4062,7 +4069,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4098,7 +4105,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5531,10 +5538,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5784,52 +5791,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5959,8 +5974,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6034,69 +6049,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6172,71 +6187,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6427,8 +6442,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6443,123 +6458,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6603,7 +6618,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6890,7 +6905,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7004,8 +7019,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7075,21 +7090,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7226,20 +7241,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7464,7 +7480,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7664,7 +7680,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7730,7 +7746,7 @@ msgstr "نەپشکنینی هەموو" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7741,8 +7757,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7762,31 +7778,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7795,34 +7811,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7881,7 +7897,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8219,7 +8235,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8228,7 +8244,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8274,97 +8290,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "فەرهەنگی زانیاریەکان" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8656,7 +8672,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8789,8 +8805,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8847,11 +8863,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8933,7 +8949,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "خشتەی %s خاڵی کرا" @@ -8946,12 +8962,12 @@ msgstr "بەدواچوونەوە چالاکە." msgid "Tracking is not active." msgstr "بەدواچوونەوە ناچالاکە." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s سڕایەوە" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "خشتەی %s سڕایەوە" @@ -8979,14 +8995,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8996,7 +9012,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9020,7 +9036,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9028,7 +9044,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9051,15 +9067,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9067,15 +9083,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9121,15 +9137,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9156,18 +9172,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9175,33 +9191,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9375,7 +9391,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9650,29 +9666,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9680,31 +9696,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9772,49 +9788,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9823,255 +9839,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10079,115 +10095,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10195,78 +10211,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10274,7 +10290,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10282,42 +10298,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10325,33 +10341,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10360,242 +10376,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10603,99 +10619,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10703,18 +10719,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10722,61 +10738,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10785,7 +10801,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10793,18 +10809,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10812,11 +10828,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10824,86 +10840,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11019,19 +11035,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11315,42 +11331,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11481,16 +11497,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11649,38 +11665,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12021,8 +12037,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12140,8 +12156,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/cs.po b/po/cs.po index 0f67933627..fec4d013c0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-22 14:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.2\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Strana číslo:" @@ -41,36 +41,36 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Vyhledávání" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Vyhledávání" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Proveď" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Název klíče" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Použít tuto hodnotu" @@ -121,18 +121,18 @@ msgstr "Byla vytvořena databáze %1$s." msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Komentář k tabulce" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Pole" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Pole" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Nulový" msgid "Default" msgstr "Výchozí" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Výchozí" msgid "Links to" msgstr "Odkazuje na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Odkazuje na" msgid "Comments" msgstr "Komentáře" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Komentáře" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ano" @@ -276,33 +276,33 @@ msgid "View dump (schema) of database" msgstr "Zobrazit výpis (schéma) databáze" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Vybrat vše" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databáze %1$s byla přejmenována na %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databáze %1$s byla zkopírována do %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Tabulka" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Řádků" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Velikost" @@ -346,7 +346,7 @@ msgstr "právě se používá" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Vytvořeno" @@ -354,7 +354,7 @@ msgstr "Vytvořeno" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Poslední změna" @@ -362,7 +362,7 @@ msgstr "Poslední změna" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Poslední kontrola" @@ -378,7 +378,7 @@ msgstr[2] "%s tabulek" msgid "You have to choose at least one column to display" msgstr "Musíte zvolit alespoň jedno pole, které chcete zobrazit" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Přepnout na %svizuálního návrháře%s" @@ -410,9 +410,9 @@ msgstr "Sledované tabulky" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databáze" @@ -430,66 +430,66 @@ msgstr "Aktualizováno" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stav" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Operace" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Zobrazit" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Odstranit" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "není zapnuté" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Verze" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Snímek struktury" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Sledovat tabulku" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Záznam databáze" @@ -505,12 +505,12 @@ msgstr "Zvolený export musí být uložen do souboru!" msgid "Bad parameters!" msgstr "Chybné parametry!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." @@ -532,115 +532,122 @@ msgstr "Výpis byl uložen do souboru %s." msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pro sloupec „%s“" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použít OpenStreetMap jako základní vrstvu" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Bod" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Přidat bod" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Vnější obrys" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Vnitřní obrys" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Mnohoúhelník" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Přidat mnohoúhelník" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Přidat geometrii" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako hodnotu" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Soubor nelze přečíst" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,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:400 +#: import.php:404 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 " @@ -659,27 +666,27 @@ 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potřebné knihovny nelze převést znakovou sadu" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,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:513 +#: import.php:517 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." @@ -696,9 +703,9 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Váš SQL-dotaz byl úspěšně vykonán" @@ -712,7 +719,7 @@ msgstr "Zpět" 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -721,7 +728,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý." msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -761,7 +768,7 @@ msgstr "Přidat klíč" msgid "Edit Index" msgstr "Upravit klíč" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Přidat %d polí do klíče" @@ -811,24 +818,24 @@ msgstr "Ukončit" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Upravit" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Živý graf provozu" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Živý graf připojení a procesů" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Živý graf dotazů" @@ -838,24 +845,24 @@ msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -875,7 +882,7 @@ msgstr "Síťový provoz (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledního obnovaní" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesy" @@ -893,7 +900,7 @@ msgstr "Dotazů od poslední aktualizace" msgid "Questions (executed statements by the server)" msgstr "Dotazy (příkazy spuštěné na serveru)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistika dotazů" @@ -938,13 +945,13 @@ msgstr "Odkládací oblast" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -996,32 +1003,32 @@ msgstr "Odesláno bajtů" msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Připojení" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1035,11 +1042,11 @@ msgstr "%d tabulek" msgid "Questions" msgstr "Dotazy" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Nastavení" @@ -1060,12 +1067,12 @@ msgid "Please add at least one variable to the series" msgstr "Prosím přidejte do série alespoň jednu hodnotu" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Žádná" @@ -1164,7 +1171,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Název grafu" @@ -1253,7 +1260,7 @@ msgstr "Vysvětlení dotazu" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Čas" @@ -1349,8 +1356,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1561,12 +1568,12 @@ msgstr "Doba běhu dotazu" msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Uložit" @@ -1622,8 +1629,8 @@ msgstr "Výsledky dotazu" msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorovat" @@ -1728,7 +1735,7 @@ msgstr "Zobrazit datové řádky" msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Vytvořit" @@ -1827,63 +1834,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "pro" @@ -1921,32 +1928,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sob" @@ -2062,16 +2069,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neočekávaný znak na řádku %1$s. Očekáván tabelátor, ale nalezeno „%2$s“" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "za minutu" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "za hodinu" @@ -2088,7 +2095,7 @@ msgstr "Maximální velikost: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentace" @@ -2111,14 +2118,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Chyba" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-dotaz" @@ -2136,210 +2143,210 @@ msgstr "SQL-dotaz" msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Provést dotaz" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Obnovit" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Zkontrolovat SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Upravit tento dotaz na této stránce" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilování" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Chybějící parametr:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "První" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Předchozí" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Následující" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Poslední" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vložit" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Projít" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Úpravy" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Vyprázdnit" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Spustit" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Vytisknout" @@ -2358,98 +2365,98 @@ msgstr "" msgid "Font size" msgstr "Velikost písma" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Vzestupně" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Sestupně" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Řadit" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Podmínka" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Přidat nebo odebrat řádek" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Přidat nebo odebrat pole" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Aktualizovat dotaz" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Použít tabulky" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Nebo" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "a" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Přidat" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Smazat" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Úpravy" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "alespoň jedno ze slov" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "všechna slova" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "přesnou frázi" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "jako regulární výraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Výsledky vyhledávání pro „%s“ %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2457,7 +2464,7 @@ msgstr[0] "Celkem: %s odpovídající záznam" msgstr[1] "Celkem: %s odpovídající záznamy" msgstr[2] "Celkem: %s odpovídajících záznamů" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -2465,44 +2472,44 @@ msgstr[0] "%1$s odpovídající záznam v %2$s" msgstr[1] "%1$s odpovídající záznamy v %2$s" msgstr[2] "%1$s odpovídajících záznamů v %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Odstranit" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Vyhledávání v databázi" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Najít:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Slova jsou oddělena mezerou („ “)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "V tabulkách:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Uvnitř pole:" @@ -2547,8 +2554,8 @@ msgstr "Záhlaví opakovat každých %s řádek" msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2625,7 +2632,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Ukončit" @@ -2644,8 +2651,8 @@ msgstr "v dotazu" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2657,7 +2664,7 @@ msgstr "Zobrazeny záznamy" msgid "total" msgstr "celkem" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Dotaz trval %01.4f sekund" @@ -2668,7 +2675,7 @@ msgstr "Dotaz trval %01.4f sekund" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Zaškrtnuté:" @@ -2678,8 +2685,8 @@ msgstr "Zaškrtnuté:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Zaškrtnout vše" @@ -2717,16 +2724,16 @@ msgstr "Odkaz nenalezen" msgid "Too many error messages, some are not displayed." msgstr "Příliš mnoho chyb, některé nebudou zobrazeny." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Soubor nebyl nahrán." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2734,27 +2741,27 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2762,11 +2769,11 @@ msgstr "" "Chyba při přejmenování nahraného soubory, viz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Nahraný soubor nelze přečíst (přesunout)." @@ -2775,66 +2782,66 @@ msgstr "Nahraný soubor nelze přečíst (přesunout)." msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Není definován žádný klíč!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Klíče" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Porovnávání" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentář" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primární klíč byl odstraněn" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Klíč %s byl odstraněn" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2845,12 +2852,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databáze" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2918,18 +2925,18 @@ msgstr "Uživatelé" msgid "Synchronize" msgstr "Synchronizace" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binární log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikace" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Proměnné" @@ -3065,8 +3072,8 @@ msgstr "" "Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení " "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkce" @@ -3076,11 +3083,11 @@ msgstr "Funkce" msgid "Operator" msgstr "Operátor" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Hodnota" @@ -3088,61 +3095,61 @@ msgstr "Hodnota" msgid "Table Search" msgstr "Vyhledávání v tabulce" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Upravit/Vložit" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Zvolte pole (alespoň jedno):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Záznamů na stránku" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Seřadit podle:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Použít tento sloupec pro přiřazení názvu každému bodu" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Nejvyšší počet vykreslených řádků" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Další parametr vyhledávání" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Provést „dotaz podle příkladu“ (zástupný znak: „%“) pro dva různé sloupce" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Projít/Upravit body" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Návod k použití" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Obnovit zvětšení" @@ -3226,20 +3233,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -3.402823466E" "+38 od -1.175494351E-38, 0, a od 1.175494351E-38 do 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od " -"-1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " +"Číslo s pohyblivou desetinnou čárkou, podporované rozsahy od -" +"1.7976931348623157E+308 do -2.2250738585072014E-308, 0, a od " "2.2250738585072014E-308 do 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3515,7 +3522,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabulky" @@ -3529,12 +3536,12 @@ msgstr "Tabulky" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Navíc" @@ -3640,7 +3647,7 @@ msgstr "Otevřené" msgid "Closed" msgstr "Uzavřené" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3778,22 +3785,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Tato volba není přístupná, nebude použita ve vašich nastaveních" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Nastavena hodnota: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Obnovit výchozí hodnotu" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Povolit uživatelům změnit tuto hodnotu" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Původní" @@ -4080,7 +4087,7 @@ msgstr "Znaková sada souboru" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formát" @@ -4189,7 +4196,7 @@ msgstr "Návěstí" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME typ" @@ -4225,7 +4232,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Použít zpětné uvozovky u jmen tabulek a polí" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -5788,10 +5795,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolování SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6058,55 +6065,63 @@ msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP." msgid "possible deep recursion attack" msgstr "možný útok rekurzí" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server neodpovídá (nebo není správně nastaven lokální socket MySQL serveru)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Server neodpovídá." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "Prosím zkontrolujte přístupová práva u adresáře obsahujícího tuto databázi." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Podrobnosti..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Změnit heslo" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Žádné heslo" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Heslo znovu" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hašovací funkce pro heslo" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Kompatibilní s MySQL 4.0" @@ -6237,8 +6252,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -6318,7 +6333,7 @@ msgstr "zapsal %2$s dne %1$s" msgid "authored on %1$s by %2$s" msgstr "vytvořil %2$s dne %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6328,33 +6343,33 @@ msgstr "" "jedná o známou chybu prohlížečů založených na webkitu (Safari, Google " "Chrome, Arora apod.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s z %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Nahrávám importovaný soubor..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Zbývá asi %MIN minut a %SEC sekund." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Zbývá asi %SEC sekund." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Soubor je zpracováván, prosím buďte trpěliví." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6362,30 +6377,30 @@ msgstr "" "Soubor je zpracováván, prosím buďte trpěliví. Podrobnosti o nahrávání nejsou " "dostupné." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importuji na aktuální server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importuji do databáze „%s“" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importuji do tabulky „%s“" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Soubor pro importování:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Soubor může být komprimovaný (%s) nebo nekomprimovaný." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6470,71 +6485,71 @@ msgstr "" "Velikost vyrovnávací paměti, kterou InnoDB používá pro vyrovnávací paměť dat " "a klíčů tabulek." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Využití vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "stránek" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Volných stránek" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Změněných stránek" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Stránek obsahujících data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Stránek určených k uvolnění" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Zpracovávaných stránek" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Zamčených stránek" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivita vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Požadavků na zápis" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Požadavků na čtení" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Výpadků při čtení" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Čekání na zápis" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Výpadků při čtení v %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Čekání na zápis v %" @@ -6763,8 +6778,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -6781,125 +6796,125 @@ msgstr "Blog PrimeBase XT, který píše Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Obsah struktury se zobrazí po kliknutí na její jméno" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Přejít na databázi: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Přejít na tabulku: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Přejít na pohled: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Skrýt" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binární" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Toto pole možná nepůjde
kvůli délce upravit" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -6943,7 +6958,7 @@ msgstr "Přidat tabulce předponu" msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" @@ -7230,7 +7245,7 @@ msgstr "Parametry tabulky" msgid "Rename table to" msgstr "Přejmenovat tabulku na" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Úložiště" @@ -7344,8 +7359,8 @@ msgstr "Vítejte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7423,21 +7438,21 @@ msgstr "Špatné uživatelské jméno nebo heslo. Přístup odepřen." msgid "Can not find signon authentication script:" msgstr "Nepodařilo se nalézt autentizační skript pro signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Soubor %s neobsahuje ID klíče" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardwarové přihlašování selhala" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nebyl připojen přihlašovací klíč" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Authentizuji..." @@ -7574,20 +7589,21 @@ msgstr "Zobrazit MIME typy" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Počítač" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Vygenerováno" @@ -7839,7 +7855,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet polí v CSV datech na řádku %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Jméno tabulky" @@ -8081,7 +8097,7 @@ msgstr "Vytváření PDF" msgid "Displaying Column Comments" msgstr "Zobrazuji komentáře polí" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformace při prohlížení" @@ -8154,7 +8170,7 @@ msgstr "Odškrtnout vše" msgid "Slave configuration" msgstr "Nastavení podřízeného" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Změnit nebo přenastavit nadřízený server" @@ -8167,8 +8183,8 @@ msgstr "" "cnf). Pokud ne, prosím přidejte následující řádek to sekce [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8188,15 +8204,15 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Proměnná" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID serveru" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8204,17 +8220,17 @@ msgstr "" "V tomto seznamu jsou zobrazeny jen podřízené servery spuštěné s parametrem --" "report-host=host_name." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Jakýkoliv uživatel" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8223,27 +8239,27 @@ msgstr "Jakýkoliv uživatel" msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8252,7 +8268,7 @@ msgstr "" "Pokud je použita tabulka Host, toto pole je ignorováno a jsou použity " "hodnoty uložené v tabulce Host." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Vytvořit heslo" @@ -8311,7 +8327,7 @@ msgstr "Podrobnosti" msgid "Event name" msgstr "Název události" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Typ události" @@ -8656,7 +8672,7 @@ msgstr "V databázi %2$s nebyla nalezen událost se jménem %1$s" msgid "There are no events to display." msgstr "Nejsou zde žádné události k zobrazení." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8665,7 +8681,7 @@ msgstr "Nejsou zde žádné události k zobrazení." msgid "The %s table doesn't exist!" msgstr "Tabulka %s neexistuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8711,91 +8727,91 @@ msgstr "Vlastnosti" msgid "Extra" msgstr "Další" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Vytvořit novou stránku" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Jméno stránky" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatické rozvržení podle" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "interních relací" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "cizích klíčů" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Zvolte stránku, kterou chcete změnit" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Zvolte stránku" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Vybrat tabulky" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Názvy polí" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Zobrazit relační schéma" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Zvolte typ výstupu relací" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Zobrazit mřížku" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Barevné šipky" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Rozměry tabulek" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Použít pro všechny tabulky stejnou šířku" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Datový slovník" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Jen zobrazit klíče" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Na šířku" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Na výšku" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientace" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Velikost stránky" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8803,7 +8819,7 @@ msgstr "" "Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete " "odstranit tyto odkazy?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Zobrazit grafický návrh" @@ -9105,7 +9121,7 @@ msgstr "Uživatelé mající přístup k „%s“" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Uživatel" @@ -9240,8 +9256,8 @@ msgstr "Přehled 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 " @@ -9302,11 +9318,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" @@ -9401,7 +9417,7 @@ msgstr "" "Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná " "rozšíření PHP, jak je popsáno v %sdokumentaci%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" @@ -9414,12 +9430,12 @@ msgstr "Sledování je zapnuté." msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" @@ -9447,14 +9463,14 @@ msgid "Column %s has been dropped" msgstr "Pole %s byla odstraněno" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primární" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Klíč" @@ -9464,7 +9480,7 @@ msgid "Spatial" msgstr "Prostorový" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9488,7 +9504,7 @@ msgstr "Zobrazit relace" msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." @@ -9496,7 +9512,7 @@ msgstr "Musíte přidat alespoň jedno pole." msgid "Add column" msgstr "Přidat sloupec" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" @@ -9519,15 +9535,15 @@ msgstr "Po %s" msgid "Create an index on  %s columns" msgstr "Vytvořit klíč na  %s polích" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistika řádků" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statický" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamický" @@ -9535,15 +9551,15 @@ msgstr "dynamický" msgid "partitioned" msgstr "používá oddíly" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Délka řádku" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Velikost řádku" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Další automatický klíč" @@ -9589,15 +9605,15 @@ msgstr "Přidat prostorový klíč" msgid "Add FULLTEXT index" msgstr "Přidat fulltextový klíč" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informace" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Využití místa" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektivní" @@ -9630,20 +9646,20 @@ msgstr "" msgid "Move column" msgstr "Přesunout pole" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Parametry transformace" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9655,33 +9671,33 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Příliš mnoho dat ENUM nebo SET?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Získejte více místa pro editaci" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Žádná" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Dle zadání:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "první" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definice PARTITION" @@ -9885,7 +9901,7 @@ msgstr "" "Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis " "problémů, které tím mohou být způsobeny." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Žádné databáze" @@ -10122,8 +10138,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -10162,29 +10178,29 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Soubory" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Jméno logu" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozice" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Původní pozice" @@ -10192,7 +10208,7 @@ msgstr "Původní pozice" msgid "Character Sets and Collations" msgstr "Znakové sady a porovnávání" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -10200,24 +10216,24 @@ msgstr[0] "%1$d databáze byla úspěšně zrušena." msgstr[1] "%1$d databáze byly úspěšně zrušena." msgstr[2] "%1$d databází bylo úspěšně zrušeno." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistiky databází" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replikace nadřízeného" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replikace podřízeného" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Zobrazit podrobnosti" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10287,40 +10303,40 @@ msgstr "Oprávnění byla načtena úspěšně." msgid "Unknown error" msgstr "Neznámá chyba" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Nepodařilo se připojit k nadřízenému %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Nepodařilo se změnit nadřízeného" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Nadřízený server bych úspěšně změněn na %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10329,11 +10345,11 @@ msgstr "" "Tento server není nastaven jako nadřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Nastavení nadřízeného" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10346,19 +10362,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:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replikovat všechny databáze s výjimkou:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Nereplikovat databáze s výjimkou:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Prosím vyberte databáze:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10366,7 +10382,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:260 +#: server_replication.php:287 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 " @@ -10375,82 +10391,82 @@ 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "SQL vlákno pro podřízený server neběží!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "IO vlákno pro podřízený server neběží!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Zobrazit tabulku se stavem podřízených" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synchronizovat databáze s nadřízeným" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Ovládání podřízeného:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Kompletně spustit" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Kompletně zastavit" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Resetovat podřízený server" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Spustit jen SQL vlákno" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Zastavit jen SQL vlákno" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Spustit jen IO vlákno" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Zastavit jen IO vlákno" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Práce s chybami:" -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Přeskočit současnou chybu" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Přeskočit dalších" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "chyb." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10459,12 +10475,12 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10472,119 +10488,119 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Obslužné rutiny" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Vyrovnávací paměť dotazů" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Počet vláken" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dočasná data" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Odložené inserty" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Vyrovnávací paměť klíčů" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Použité výběry" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Řazení" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinátor transakcí" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Zavřít všechny tabulky" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Zobrazit stav podřízených serverů" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Vyprázdnit vyrovnávací paměť dotazů" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Všechny stavové proměnné" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitor" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Poradce" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Počet datových bodů: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Obnovovací frekvence: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtry" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Obsahující slovo:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Zobrazit jen hodnoty s upozorněním" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrovat podle kategorie..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Zobrazit neformátované hodnoty" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Související odkazy:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Spustit analýzu" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Návod" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10592,7 +10608,7 @@ msgstr "" "Poradce vám může doporučit změny v nastavení serveru analýzou stavových " "proměnných." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10602,7 +10618,7 @@ msgstr "" "jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro " "váš systém." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10612,7 +10628,7 @@ msgstr "" "(čtením dokumentace) a jak případně vrátit změny zpět. Špatné nastavení může " "mít velmi negativní vliv na výkon serveru." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10623,31 +10639,31 @@ msgstr "" "znatelnému zlepšení, můžete nastavení vrátit zpět." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Dotazů od spuštění: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Síťový provoz od spuštění: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tento MySQL server běží %1$s. Čas spuštění: %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10655,17 +10671,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Tento server pracuje jako nadřízený v replikačním procesu." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento server pracuje jako podřízený v replikačním procesu." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10673,11 +10689,11 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10685,46 +10701,46 @@ msgstr "" "Na hodně zatíženém serveru mohou čítače přetéct, takže statistiky MySQL " "serveru mohou být nepřesné." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Přijato" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Odesláno" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "maximum současných připojení" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Příkaz" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" "Počet spojení, která byla ukončena bez korektního ukončení ze strany klienta." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet chybných připojení k MySQL serveru." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10734,16 +10750,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcí, které využily dočasný binární log." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Celkový počet připojení (i chybných) k MySQL serveru." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10754,18 +10770,18 @@ msgstr "" "Pokud je tato hodnota velká, můžete zvětšit parametr tmp_table_size a MySQL " "bude používat větší dočasné tabulky v paměti." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" "Počet dočasných tabulek vytvořených serverem v paměti při provádění dotazů." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10773,7 +10789,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10781,23 +10797,23 @@ msgstr "" "Počet vláken používaných pro INSERT DELAYED. Každá tabulka na které je " "použit INSERT DEKAYED má přiděleno jedno vlákno." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10806,7 +10822,7 @@ msgstr "" "Počet zjišťování tabulek. Tímto se nazývá dotaz NDB clusteru, jestli ví o " "tabulce daného jména." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10816,7 +10832,7 @@ msgstr "" "provádí mnoho kompletních procházení klíčů. Na příklad SELECT col1 FROM foo, " "pokud je col1 v klíči." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10824,7 +10840,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z klíče. Vysoká hodnota " "znamená, že dotazy správně využívají klíče." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10834,7 +10850,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na sloupec s klíčem s omezením rozsahu nebo " "prohledáváte klíč." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10842,7 +10858,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z klíče. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10854,7 +10870,7 @@ msgstr "" "Pravděpodobně používáte mnoho dotazů, které vyžadují prohlížení celé tabulky " "nebo používáte spojení tabulek, která nevyužívají klíčů." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10864,35 +10880,35 @@ msgstr "" "Počet požadavků na přečtení dalšího řádku ze souboru. Tato hodnota je vysoká " "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné klíče." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránek obsahujících data (změněné i nezměněné)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránek, na které je požadavek na vyprázdnění." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10901,7 +10917,7 @@ msgstr "" "Počet zamčených stránek, tzn. stránek, které jsou právě zapisovány nebo " "čteny nebo nemohou být odstraněny z jakéhokoliv důvodu." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10913,11 +10929,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10925,7 +10941,7 @@ msgstr "" "Počet provedených „náhodných“ dopředných čtení. Tato situace nastává pokud " "dotaz prochází velkou část tabulky v náhodném pořadí." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10933,11 +10949,11 @@ msgstr "" "Počet provedených sekvenčních dopředných čtení. Toto nastává pokud InnoDB " "musí procházet celou tabulku." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10945,7 +10961,7 @@ msgstr "" "Počet logických čtení, které nemohly být uspokojeny z bufferu, ale bylo " "nutné přečíst stránku ze souboru." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10958,55 +10974,55 @@ msgstr "" "k dispozici, musí se čekat. Pokud je velikost bufferů nastavena správně, " "měla by tato hodnota být malá." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet provedených dvojitých zapsání a počet stránek, které byly takto " "zapsány." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11014,35 +11030,35 @@ msgstr "" "Počet čekání kvůli plnému bufferu logu, který musel být vyprázdněn před " "pokračováním." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Počet skutečných zápisů do logovacího souboru." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Počet synchronizací fsync() provedených na logovacích souborech." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11050,51 +11066,51 @@ msgstr "" "Zakompilovaná velikost stránky InnoDB (výchozí je 16 kB). Mnoho hodnot je " "uváděno ve stránkách, pomocí této hodnoty je můžete přepočítat na velikost." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Počet zámků řádku, na které se v současné době čeká." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Průměrný čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas strávený čekáním na zámek řádku, v milisekundách." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximální čas potřebný pro získání zámku řádku, v milisekundách." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Kolikrát se muselo čekat na zámek řádku." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11102,7 +11118,7 @@ msgstr "" "Počet bloků ve vyrovnávací paměti klíčů, které byly změněny, ale nebyly " "zapsány na disk. Dříve se tato hodnota jmenovala Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11110,7 +11126,7 @@ msgstr "" "Počet nepoužitých bloků ve vyrovnávací paměti klíčů. Pomocí této hodnoty " "poznáte jak moc je vyrovnávací paměť využitá." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11119,15 +11135,15 @@ msgstr "" "Počet použitých bloků ve vyrovnávací paměti klíčů. Tato hodnota určuje " "maximum bloků, které kdy byly obsazeny najednou." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Procento využití vyrovnávací paměti klíčů (vypočítaná hodnota)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Počet požadavků na přečtení klíče z vyrovnávací paměti." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11137,7 +11153,7 @@ msgstr "" "pravděpodobně máte malou vyrovnávací paměť (key_buffer_size). Úspěšnost " "vyrovnávací paměti můžete spočítat jako Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11145,22 +11161,22 @@ msgstr "" "Úspěšnost vyrovnávací paměti klíčů spočítaná jako poměr skutečných a " "požadovaných čtení (vypočítaná hodnota)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Počet požadavků na zápis bloku klíče na disk." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Počet skutečných zápisů bloku klíče na disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procento skutečných zápisů v porovnání s požadavky na zápis (vypočítaná " "hodnota)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11170,17 +11186,17 @@ msgstr "" "dotazů. Užitečné pro porovnání různých dotazů. Výchozí hodnota 0 znamená, že " "žádný dotaz ještě nebyl kompilován." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Maximální počet současně používaných připojení od spuštění serveru." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet řádků čekajících na zapsání ve frontě INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11188,19 +11204,19 @@ msgstr "" "Celkem otevřených tabulek. Pokud je tato hodnota příliš vysoká, " "pravděpodobně máte malou vyrovnávací paměť pro tabulky." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otevřených streamů (používané převážně pro logování)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11210,19 +11226,19 @@ msgstr "" "na problému s fragmentací, která může být vyřešena spuštěním příkazu FLUSH " "QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Počet dotazů přidaných do vyrovnávací paměti dotazů." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11234,7 +11250,7 @@ msgstr "" "Vyrovnávací paměť používá strategii LRU (nejdéle nepoužité) pro vyřazování " "dotazů z vyrovnávací paměti." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11242,19 +11258,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11262,12 +11278,12 @@ msgstr "" "Počet spojení, které nevyužívaly klíče. Pokud tato hodnota není 0, měli " "byste zkontrolovat klíče tabulek." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, které používaly intervalové vyhledávání na referenční tabulce." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11275,7 +11291,7 @@ msgstr "" "Počet spojení bez klíčů, které kontrolovaly použití klíčů po každém řádku. " "(Pokud tato hodnota není 0, měli byste zkontrolovat klíče tabulek.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11283,38 +11299,38 @@ msgstr "" "Počet spojení, které používaly intervalové vyhledávání na první tabulce. " "(Tato hodnota obvykle není kritická i když je vysoká.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, které prováděly kompletní procházení první tabulky." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Počet dočasných tabulek v současné době otevřených podřízeným serverem." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "Celkový počet, kolikrát musel podřízený server opakovat transakce." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Tato položka je zapnutá, pokud server pracuje jako podřízený." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Počet vláken jejichž vytvoření trvalo déle než slow_launch_time sekund." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Počet dotazů, které trvaly déle než long_query_time sekund." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11323,23 +11339,23 @@ msgstr "" "Počet průchodů slučování, které musel provést řadicí algoritmus. Při příliš " "vysoké hodnotě zvažte zvýšení sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Počet řazení provedených procházením tabulky." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet okamžitých získání zámku tabulky." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11350,7 +11366,7 @@ msgstr "" "problémy s výkonem, měli byste optimalizovat dotazy a případně rozdělit " "tabulky nebo použít replikaci." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11360,11 +11376,11 @@ msgstr "" "spočítána jako Threads_created/Connections. Pokud je tato hodnota červená, " "měli byste zvýšit thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11375,47 +11391,47 @@ msgstr "" "velká, můžete zvětšit parametr thread_cache_size. (Na platformách, které " "mají dobrou implementaci vláken však toto nemá příliš velký vliv.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Úspěšnost vyrovnávací paměti vláken (vypočítaná hodnota)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Spustit monitor" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Návod/Nastavení" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Ukončit upravování grafů" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Přidat graf" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Upravit/Uspořádat grafy" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Sloupce grafu" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11423,15 +11439,15 @@ msgstr "" "Uspořádání grafů je uloženo ve vašem prohlížeči. Pokud máte komplikovanější " "nastavení, můžete ho chtít exportovat a zálohovat." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instrukce monitoru" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11444,7 +11460,7 @@ msgstr "" "log_output na 'TABLE' a mít povolené záznam pomalých dotazů nebo všech " "dotazů. Zaznamenání všech dotazů ale může zvýšit zatížení serveru až o 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11456,11 +11472,11 @@ msgstr "" "podporována v MySQL 5.1.6 a novějších. I bez této podpory však můžete použít " "zobrazování grafů s informacemi o serveru." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Používání monitoru:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11470,7 +11486,7 @@ msgstr "" "můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " "odstranit grafy." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11482,11 +11498,11 @@ msgstr "" "nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " "analýze." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Poznámka:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11498,79 +11514,79 @@ msgstr "" "vybírat krátké časové období a záznam vypnout poté co již monitorování " "nebudete potřebovat." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Předdefinované grafy" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Stavové proměnné" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Vyberte série:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Obvykle monitorované" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "nebo zadejte jméno proměnné:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Zobrazit jako rozdíl" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Vynásobit" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Přidat jednoty" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Přidat tuto sérii" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Odstranit série" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Série v grafu:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Statistiky záznamů" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Zvolte ze kterého záznamu chcete vygenerovat statistiku." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Výsledky jsou sloučeny podle textu dotazu." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analýza dotazu" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11578,7 +11594,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekund" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11697,19 +11713,19 @@ msgstr "" "Cílová databáze bude kompletně synchronizována se zdrojovou. Zdrojová nebude " "nijak změněna." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Nastavení proměnné selhalo" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Proměnné a nastavení serveru" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Hodnota sezení" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globální hodnota" @@ -11975,8 +11991,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" -"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" +"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:310 @@ -11987,8 +12003,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " -"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" +"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." @@ -12049,42 +12065,42 @@ msgstr "" msgid "Wrong data" msgstr "Chybná data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Vygeneroval" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Název" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Vybraná pole byla úspěšně přesunuta." @@ -12215,16 +12231,16 @@ msgstr "Upravit klíč" msgid "Index name:" msgstr "Jméno klíče:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Typ klíče:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Přidat %s polí do klíče" @@ -12387,38 +12403,38 @@ msgstr "Exportovat jako %s" msgid "Show versions" msgstr "Zobrazit verze" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Vypnout sledování pro %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Vypnout teď" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Zapnuté sledování pro %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Zapnout teď" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvořit verzi %1$s z %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Vytvořit verzi" @@ -12536,8 +12552,8 @@ msgid "" "You have a slow query rate of %s per hour, you should have less than 1%% per " "hour." msgstr "" -"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod " -"1%%." +"Četnost pomalých dotazů na tomto serveru je %s za hodinu, měla by být pod 1%" +"%." #: libraries/advisory_rules.txt:77 msgid "Long query time" @@ -12790,8 +12806,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "V současné době je volno %s%% vyrovnávací paměti. Tato hodnota by se měla " "držet nad 80%%" @@ -12943,11 +12959,11 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" -"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod " -"10%%." +"%s%% všech řazení využilo dočasných tabulek, tato hodnota by měla být pod 10%" +"%." #: libraries/advisory_rules.txt:211 msgid "Rate of sorts that cause temporary tables" diff --git a/po/cy.po b/po/cy.po index 2690612702..e08e0868d5 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:38+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Rhif tudalen:" @@ -42,36 +42,36 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Chwilio" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -79,28 +79,28 @@ msgstr "Chwilio" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Ewch" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Enw allweddol" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Disgrifiad" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" @@ -122,18 +122,18 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Database comment: " msgstr "Sylw cronfa ddata: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -141,18 +141,18 @@ msgstr "Sylwadau tabl" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Colofn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -169,11 +169,11 @@ msgstr "Colofn" msgid "Type" msgstr "Math" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -185,9 +185,9 @@ msgstr "Math" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -200,8 +200,8 @@ msgstr "Null" msgid "Default" msgstr "Diofyn" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -209,11 +209,11 @@ msgstr "Diofyn" msgid "Links to" msgstr "Cysylltu i" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -222,12 +222,12 @@ msgstr "Cysylltu i" msgid "Comments" msgstr "Sylwadau" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -238,23 +238,23 @@ msgstr "Sylwadau" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Na" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -266,8 +266,8 @@ msgstr "Na" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ie" @@ -277,35 +277,35 @@ msgid "View dump (schema) of database" msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Dewis Pob" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Dad-ddewis Pob" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -314,12 +314,12 @@ msgstr "" "Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i " "ddarganfod pam." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Tabl" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rhesi" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Maint" @@ -349,7 +349,7 @@ msgstr "ar ddefnydd" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Cread" @@ -357,7 +357,7 @@ msgstr "Cread" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Diweddariad diwethaf" @@ -365,7 +365,7 @@ msgstr "Diweddariad diwethaf" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Gwiriad diwethaf" @@ -380,7 +380,7 @@ msgstr[1] "%s tabl" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" @@ -413,9 +413,9 @@ msgstr "Tablau a draciwyd" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Cronfa ddata" @@ -433,66 +433,66 @@ msgstr "Diweddarwyd" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Statws" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Gweithred" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Dangos" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Gollwng" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "gweithredol" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ddim yn weithredol" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Ciplun strwythur" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tablau heb dracio" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tracio tabl" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Log cronfa ddata" @@ -512,12 +512,12 @@ msgstr "Mae'n rhaid cadw math yr allbwn hwn mewn ffeil!" msgid "Bad parameters!" msgstr "Rheolweithiau" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Lle annigonol i gadw'r ffeil %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -530,7 +530,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." @@ -541,125 +541,128 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." msgid "Invalid export type" msgstr "Allforio" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Routines" msgid "Add a point" msgstr "Rheolweithiau" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Ychwanegwch cyfyngiadau" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new server" msgid "Add an inner ring" msgstr "Ychwanegwch weinydd newydd" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Ychwanegwch weinydd newydd" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Cafodd y clustnod ei ddileu." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Nid oedd modd darllen y ffeil hon." -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -668,7 +671,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:400 +#: import.php:404 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 " @@ -679,41 +682,41 @@ msgstr "" "ganiatáu gan eich ffurfwedd PHP. Gweler See [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus" @@ -727,7 +730,7 @@ msgstr "Nôl" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." @@ -737,7 +740,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." msgid "Do you really want to execute \"%s\"?" msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -787,7 +790,7 @@ msgstr "Indecs" msgid "Edit Index" msgstr "Golygu'r rhes nesaf" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %d column(s) to index" @@ -844,26 +847,26 @@ msgstr "Cau" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Golygu" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Dewis Gweinydd" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "Show insert query" msgid "Live query chart" @@ -875,24 +878,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -914,7 +917,7 @@ msgstr "Dewis Gweinydd" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prosesau" @@ -932,7 +935,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -984,13 +987,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1050,32 +1053,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1093,11 +1096,11 @@ msgstr "%s tabl" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1124,12 +1127,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Dim" @@ -1230,7 +1233,7 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1326,7 +1329,7 @@ msgstr "Esbonio SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Amser" @@ -1438,8 +1441,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" @@ -1703,12 +1706,12 @@ msgstr "Gweithrediad SQL" msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Cadw" @@ -1776,8 +1779,8 @@ msgstr "Gweithrediadau canlyniadau ymholiad" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Anwybyddu" @@ -1886,7 +1889,7 @@ msgstr "Yn dangos rhesi" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generadu" @@ -1995,63 +1998,63 @@ msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Rhag" @@ -2092,32 +2095,32 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sad" @@ -2233,16 +2236,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2259,7 +2262,7 @@ msgstr "Uchaf: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dogfennaeth" @@ -2282,14 +2285,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Gwall" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2307,87 +2310,87 @@ msgstr "Ymholiad SQL" msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Cyflwyno Ymholiad" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Adfywio" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Dilysu SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Golygu mewnol yr ymholiad hwn" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Proffilio" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rheolweithiau" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2395,28 +2398,28 @@ msgctxt "First page" msgid "Begin" msgstr "Dechrau" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Cynt" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Nesaf" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2424,110 +2427,110 @@ msgctxt "Last page" msgid "End" msgstr "Diwedd" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Strwythur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Mewnosod" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Pori" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Gwagu" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Argraffu" @@ -2544,105 +2547,105 @@ msgstr "" msgid "Font size" msgstr "Maint ffont" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Esgynnol" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Disgynnol" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Trefnu" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Meini prawf" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Ychwanegu/Dileu rhesi meini prawf" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ymholiad Diweddaru" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Defnyddiwch Dablau" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Or" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "And" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Addasu" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "o leiaf un o'r geiriau" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "pob gair" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "y cymal union" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "fel mynegiad arferol (regular expression)" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Canlyniadau chwilio am \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Cyfanswm: %s cydwedd" msgstr[1] "Cyfanswm: %s cydwedd" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2650,48 +2653,48 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Dileu" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Chwilio yn y gronfa ddata" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Geiriau neu werthoedd i'w chwilio amdanyn nhw (nod-chwiliwr: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Darganfod:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tu fewn tabl(au):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Tu fewn colofn:" @@ -2743,8 +2746,8 @@ msgstr "Gweithredu ymholiad a glustnodwyd" msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2827,7 +2830,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Lladd" @@ -2844,8 +2847,8 @@ msgstr "mewn ymholiad" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2857,7 +2860,7 @@ msgstr "Yn dangos rhesi" msgid "total" msgstr "cyfanswm" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" @@ -2868,7 +2871,7 @@ msgstr "Cymerodd yr ymholiad %01.4f eiliad" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Gyda'r dewis:" @@ -2878,8 +2881,8 @@ msgstr "Gyda'r dewis:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Dewis Pob" @@ -2921,51 +2924,51 @@ msgstr "Methu â darganfod y cysylltiad" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Ffolder dros dro ar goll." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Cafodd y lanlwythiad ei atal gan estyniad." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2974,68 +2977,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Dim indecs wedi'i ddiffinio!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indecsau" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Coladiad" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Sylw" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Cafodd yr allwedd gynradd ei gollwng" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Cafodd indecs %s ei ollwng" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3046,12 +3049,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Cronfeydd Data" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Gweinydd" @@ -3121,18 +3124,18 @@ msgstr "Defnyddiwr" msgid "Synchronize" msgstr "Cydamseru" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Log deuaidd" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Dyblygiad" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Newidynnau" @@ -3269,8 +3272,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Swyddogaeth" @@ -3280,11 +3283,11 @@ msgstr "Swyddogaeth" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Gwerth" @@ -3294,66 +3297,66 @@ msgstr "Gwerth" msgid "Table Search" msgstr "Chwilio" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Mewnosod" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "in query" msgid "Additional search criteria" msgstr "mewn ymholiad" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "PHP extension to use" msgid "How to use" msgstr "Estyniad PHP i'w ddefnyddio" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3428,14 +3431,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3686,7 +3689,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tablau" @@ -3700,12 +3703,12 @@ msgstr "Tablau" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Gorbenion" @@ -3814,7 +3817,7 @@ msgstr "" msgid "Closed" msgstr "Cau" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3960,22 +3963,22 @@ msgstr "Wici" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Gosod gwerth: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Adfer gwerth diofyn" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Ailosod" @@ -4258,7 +4261,7 @@ msgstr "Set nodau y ffeil" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Fformat" @@ -4376,7 +4379,7 @@ msgstr "Allwedd y label" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Math MIME" @@ -4414,7 +4417,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modd cytunedd SQL" @@ -5909,10 +5912,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6180,54 +6183,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Dyw'r gweinydd ddim yn ymateb" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Manylion..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Newid cyfrinair" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Dim Cyfrinair" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ail-deipiwch" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Stwnsio Cyfrinair" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0-cytûn" @@ -6380,8 +6391,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6469,42 +6480,42 @@ msgstr "Crëwch fersiwn %s o %s.%s" msgid "authored on %1$s by %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Fformat y ffeil a mewnforiwyd" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Mae'r ffeil yn cael ei phrosesu. Byddwch yn amyneddgar." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6512,36 +6523,36 @@ msgstr "" "Byddwch yn amyneddgar, mae'r ffeil yn cael ei lanlwytho. Does dim manylion " "parthed y lanlwythiad ar gael." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Methu â mewngofnodi i'r gweinydd MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "Jump to database" msgid "Importing into the database \"%s\"" msgstr "Neidiwch i'r gronfa ddata" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "Jump to database" msgid "Importing into the table \"%s\"" msgstr "Neidiwch i'r gronfa ddata" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Ffeil i'w mewnforio" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6621,71 +6632,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Statws InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Defnydd Pwll Byffer" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "tudalennau" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Tudalennau rhydd" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Tudalennau brwnt" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Tudalennau sy'n cynnwys data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Tudalennau i'w gwacáu" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Tudalennau prysur" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Tudalennau" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Gweithgaredd Pwll Byffer" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Ceisiadau darllen" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Ceisiadau ysgrifennu" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Colledion darllen" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Arosiadau ysgrifennu" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Colledion darllen mewn %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Arosiadau ysgrifennu mewn %" @@ -6876,8 +6887,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6894,129 +6905,129 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "Dim cronfeydd data" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "Cyfrifwch y tablau" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Cuddio" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Deuaidd" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7064,7 +7075,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7353,7 +7364,7 @@ msgstr "" msgid "Rename table to" msgstr "Ailenwi tabl i" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Peiriant Storio" @@ -7471,11 +7482,11 @@ msgstr "Croeso i %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7554,21 +7565,21 @@ msgstr "Enw defnyddiwr/cyfrinair anghywir. Mynediad wedi'i wrthod." msgid "Can not find signon authentication script:" msgstr "Yn dilysu..." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Nid yw ffeil %s yn cynnwys unrhyw id allwedd" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Dilysu caledwedd wedi methu" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Yn dilysu..." @@ -7729,20 +7740,21 @@ msgstr "Mathau MIME ar gael" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Gwesteiwr" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Amser Generadu" @@ -7981,7 +7993,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8185,7 +8197,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Trawsffurfiad porwr" @@ -8251,7 +8263,7 @@ msgstr "Dad-ddewis Pob" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8262,8 +8274,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8283,31 +8295,31 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Newidyn" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID y Gweinydd" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8316,34 +8328,34 @@ msgstr "Unrhyw ddefnyddiwr" msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generadu Cyfrinair" @@ -8412,7 +8424,7 @@ msgstr "Manylion..." msgid "Event name" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Math y digwyddiad" @@ -8808,7 +8820,7 @@ msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." msgid "There are no events to display." msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8817,7 +8829,7 @@ msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8865,103 +8877,103 @@ msgstr "" msgid "Extra" msgstr "Ychwanegol" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Crëwch dudalen" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Enw'r dudalen" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Perthnasau mewnol" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Dewis Tablau" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Dewis Tablau" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Sgema perthynol" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Dangos grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Dangos lliw" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Dangos dimensiynau'r tabl" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Dangos pob tabl gyda'r un lled" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Geiriadur Data" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Dangos allweddau'n unig" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Tirlun" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portread" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Cread" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Maint papur" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9255,7 +9267,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Defnyddiwr" @@ -9393,8 +9405,8 @@ msgstr "Gorolwg" 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 "" #: libraries/server_privileges.lib.php:3054 @@ -9451,11 +9463,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9537,7 +9549,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" @@ -9550,12 +9562,12 @@ msgstr "Mae tracio'n weithredol" msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" @@ -9583,14 +9595,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Cynradd" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indecs" @@ -9600,7 +9612,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Testunllawn" @@ -9628,7 +9640,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." @@ -9636,7 +9648,7 @@ msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" @@ -9659,15 +9671,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9675,15 +9687,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9733,15 +9745,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Gwybodaeth" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9771,18 +9783,18 @@ msgstr "" msgid "Move column" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9790,33 +9802,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Dim" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Fel a ddiffiniwyd:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Diffiniad PARTITION" @@ -10015,7 +10027,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Dim cronfeydd data" @@ -10322,29 +10334,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Enw'r log" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Safle" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Safle gwreiddiol" @@ -10352,7 +10364,7 @@ msgstr "Safle gwreiddiol" msgid "Character Sets and Collations" msgstr "Setiau nod a Choladiadau" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -10360,24 +10372,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Cafodd cronfa ddata %s ei gollwng." msgstr[1] "Cafodd cronfa ddata %s ei gollwng." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Ystadegau cronfeydd data" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Galluogi Ystadegau" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10447,49 +10459,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10498,274 +10510,274 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Strwythur yn unig" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Strwythur yn unig" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of columns" msgid "Number of data points: " msgstr "Nifer y colofnau" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Adfywio" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Hidlydd" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show only listed databases" msgid "Show only alert values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show only listed databases" msgid "Show unformatted values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Perthnasau" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Ymholiad" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Swyddogaethau" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10773,117 +10785,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Gorchymyn" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10891,78 +10903,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10970,7 +10982,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10978,42 +10990,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11021,33 +11033,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11056,244 +11068,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Fformat y ffeil a mewnforiwyd" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11301,99 +11313,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11401,18 +11413,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11420,70 +11432,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nid yw tracio'n weithredol" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "Rheolweithiau" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adfer gwerth diofyn" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11492,7 +11504,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11500,18 +11512,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11519,11 +11531,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11531,93 +11543,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tynnwch y gronfa ddata" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Dewis Tablau" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Enw tabl annilys" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Ychwanegwch weinydd newydd" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Dangos ystadegau" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Dewis Tablau" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Ymholiad" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11625,7 +11637,7 @@ msgid_plural "%d seconds" msgstr[0] "Eiliad" msgstr[1] "Eiliad" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11744,19 +11756,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -12044,44 +12056,44 @@ msgstr "" msgid "Wrong data" msgstr "Dim cronfeydd data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -12242,16 +12254,16 @@ msgstr "Argraffu golwg" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12424,41 +12436,41 @@ msgstr "Allforio fel %s" msgid "Show versions" msgstr "Dangos fersiynau" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Dadweithredwch dracio am %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Gweithredwch dracio am %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Gweithredwch nawr" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Crëwch fersiwn" @@ -12827,8 +12839,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12961,8 +12973,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13738,8 +13750,8 @@ msgstr "" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata " -#~ "%s?" +#~ "A ydych chi wir am analluogi pob cyfeiriad BLOB ar gyfer y gronfa ddata %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/da.po b/po/da.po index 81b4e11f02..97955b5a73 100644 --- a/po/da.po +++ b/po/da.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-09 08:26+0200\n" "Last-Translator: Aputsiaq Niels Janussen \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Side nummer:" @@ -40,36 +40,36 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Søg" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Søg" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Udfør" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Brug denne værdi" @@ -119,18 +119,18 @@ msgstr "Database %1$s er oprettet." msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Tabel kommentarer" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolonnenavn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Kolonnenavn" msgid "Type" msgstr "Datatype" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Datatype" msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Nulværdi" msgid "Default" msgstr "Standardværdi" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Standardværdi" msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nej" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Vælg alle" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Database %1$s er blevet omdøbt til %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s er blevet kopieret til %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -308,12 +308,12 @@ msgid "" msgstr "" "phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -323,14 +323,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rækker" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Størrelse" @@ -343,7 +343,7 @@ msgstr "i brug" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Oprettelse" @@ -351,7 +351,7 @@ msgstr "Oprettelse" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Sidste opdatering" @@ -359,7 +359,7 @@ msgstr "Sidste opdatering" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Sidste check" @@ -374,7 +374,7 @@ msgstr[1] "%s tabeller" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Skift til %svisuel konstruktør%s" @@ -406,9 +406,9 @@ msgstr "Sporede tabeller" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -426,66 +426,66 @@ msgstr "Opdateret" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Handling" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Vis" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slet sporingsdata for denne tabel" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Slet" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versioner" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Sporingsrapport" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Ikke-sporede tabeller" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Sporingstabel" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Databaselog" @@ -501,12 +501,12 @@ msgstr "Valgte eksporttype skal gemmes som fil!" msgid "Bad parameters!" msgstr "Forkerte parametre!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkelig plads til at gemme filen %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -519,7 +519,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." @@ -528,118 +528,125 @@ msgstr "Dump er blevet gemt i filen %s." msgid "Invalid export type" msgstr "Ugyldig eksporttype" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Værdi for kolonnen \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Brug OpenStreetMaps som basislag" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Tilføj et punkt" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Ydre ring" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Indre ring" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Tilføj en linjestreng" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Tilføj en indre ring" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Tilføj polygon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Tilføj geometri" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Output" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Vælg \"GeomFromText\" fra kolonnen \"Function\" og indsæt strengen nedenfor " "i feltet \"Value\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Filen kunne ikke læses" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,7 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: import.php:400 +#: import.php:404 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 " @@ -660,27 +667,27 @@ msgstr "" "tilladt af din PHP-konfiguration. Se [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsæt uden konverteringsbibliotek for tegnsæt" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, check venligst din installation!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -688,7 +695,7 @@ msgstr "" "Script timeout nået, hvis du vil afslutte importen, indsend venligst samme " "fil igen og importen vil blive genoptaget." -#: import.php:513 +#: import.php:517 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." @@ -697,9 +704,9 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-forespørgsel blev udført korrekt" @@ -714,7 +721,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -723,7 +730,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Do you really want to execute \"%s\"?" msgstr "Er du sikker på at du vil udføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -763,7 +770,7 @@ msgstr "Tilføj indeks" msgid "Edit Index" msgstr "Redigér indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Tilføj %d kolonne(r) til indeks" @@ -813,24 +820,24 @@ msgstr "Luk" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ret" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Realtids trafikoversigt" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Realtids forbind./opgave-oversigt" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Realtid forespørgsels-oversigt" @@ -840,24 +847,24 @@ msgstr "Statiske data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -877,7 +884,7 @@ msgstr "Server-trafik (i KiB)" msgid "Connections since last refresh" msgstr "Forbindelser siden sidste visning" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processer" @@ -895,7 +902,7 @@ msgstr "Spørgsmål siden sidste visning" msgid "Questions (executed statements by the server)" msgstr "Spørgsmål (eksekverede forespørgsler på serveren)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistik over forespørgsler" @@ -941,13 +948,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -999,32 +1006,32 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Forbindelser" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1038,11 +1045,11 @@ msgstr "%d tabel(ler)" msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Indstillinger" @@ -1063,12 +1070,12 @@ msgid "Please add at least one variable to the series" msgstr "Tilføj mindst en variabel til serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ingen" @@ -1168,7 +1175,7 @@ msgstr "Ændre indstillinger" msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Diagramtitel" @@ -1254,7 +1261,7 @@ msgstr "Forklar output" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tid" @@ -1352,8 +1359,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1567,12 +1574,12 @@ msgstr "Eksekveringstid for forespørgsel" msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Gem" @@ -1631,8 +1638,8 @@ msgstr "Forespørgselsresultater" msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorer" @@ -1740,7 +1747,7 @@ msgstr "Vis datarække(r)" msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generer" @@ -1839,63 +1846,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -1933,32 +1940,32 @@ msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "lør" @@ -2073,16 +2080,16 @@ msgstr "Uventet tegn på linje %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Uventet tegn på linje %1$s. Forventede tabulering, men fandt \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "pr. sekund" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "pr. minut" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "pr. time" @@ -2099,7 +2106,7 @@ msgstr "Maksimum størrelse: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentation" @@ -2122,14 +2129,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fejl" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2147,212 +2154,212 @@ msgstr "SQL-forespørgsel" msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke oprette forbindelse til SQL validator!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Uden PHP-kode" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Send forespørgsel" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Opdater" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Spring over Valider SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Åben linje til redigering af forespørgslen" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Manglende parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Næste" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Indsæt" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Vis" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operationer" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Tøm" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Udfør" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Print" @@ -2370,149 +2377,149 @@ msgstr "" msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Stigende" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Faldende" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sorter" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterier" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Tilføj/Slet kriterie-række" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Tilføj/Slet kolonner" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Opdater forespørgsel" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Benyt tabeller" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Eller" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Og" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins (Indsæt)" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del (Slet)" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ret" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "mindst et af ordene" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alle ord" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "den nøjagtige sætning" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "som regulært udtryk" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søgeresultater for \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "I alt: %s sammenfald" msgstr[1] "I alt %s sammenfald" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s sammenfald i %2$s" msgstr[1] "%1$s sammenfald i %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Slet" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Søg i databasen" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller værdier til at søge efter (jokertegn: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Find:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Ord adskilles af mellemrumstegn (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Indeni tabel(ler):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Indeni kolonne:" @@ -2557,8 +2564,8 @@ msgstr "Overskrifter for hver %s. række" msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2635,7 +2642,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Dræb (Kill)" @@ -2654,8 +2661,8 @@ msgstr "i forespørgsel" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." @@ -2667,7 +2674,7 @@ msgstr "Viser poster" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" @@ -2678,7 +2685,7 @@ msgstr "forepørgsel tog %01.4f sek" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Med det markerede:" @@ -2688,8 +2695,8 @@ msgstr "Med det markerede:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Vælg alle" @@ -2727,15 +2734,15 @@ msgstr "Link ikke fundet" msgid "Too many error messages, some are not displayed." msgstr "For mange fejlmeddelelser, nogle vises ikke." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Filen var ikke en uploaded fil." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2743,27 +2750,27 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2771,11 +2778,11 @@ msgstr "" "Fejl ved flytning af den uploadede fil, se [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Kan ikke læse (flyttet) uploaded fil." @@ -2784,66 +2791,66 @@ msgstr "Kan ikke læse (flyttet) uploaded fil." msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Herefter skal JavaScript være slået til" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Intet indeks defineret!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Tegnsæt (sortering)" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primærnøglen er slettet" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s er blevet slettet" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2854,12 +2861,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databaser" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2927,18 +2934,18 @@ msgstr "Brugere" msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binær log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikation" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variable" @@ -3074,8 +3081,8 @@ msgstr "" "efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet " "ændret." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3085,11 +3092,11 @@ msgstr "Funktion" msgid "Operator" msgstr "Operatør" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Værdi" @@ -3097,62 +3104,62 @@ msgstr "Værdi" msgid "Table Search" msgstr "Tabelsøgning" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Rediger/Indsæt" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Vælg kolonner (mindst én):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tilføj søgekriterier (kroppen af \"where\" sætningen):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Rækker pr. side" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Rækkefølge af visning:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Brug denne kolonne til at navngive hvert punkt" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maksimalt antal plottede rækker" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Ekstra søgekriterium" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Kør en \"forespørgsel ved eksempel\" (jokertegn: \"%\") for to forskellige " "kolonner" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Bladr gennem/rediger punkterne" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Hvordan man bruger" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Nulstil zoom" @@ -3238,20 +3245,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til " -"-1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" +"Et lille, flydende decimaltal. Tilladte værdier er -3.402823466E+38 til -" +"1.175494351E-38, 0, samt 1.175494351E-38 til 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er " -"-1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " +"Et dobbeltpræcisions, flydende decimaltal. Tilladte værdier er -" +"1.7976931348623157E+308 til -2.2250738585072014E-308, 0, samt " "2.2250738585072014E-308 til 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3538,7 +3545,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabeller" @@ -3552,12 +3559,12 @@ msgstr "Tabeller" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3664,7 +3671,7 @@ msgstr "Åben" msgid "Closed" msgstr "Lukket" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3806,22 +3813,22 @@ msgstr "" "Denne indstilling er deaktiveret og vil ikke blive anvendt i din " "konfiguration" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Indstil værdien %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Gendan standardværdi" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Tillad brugerdefinerede indstillinger for værdien" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Nulstil" @@ -4115,7 +4122,7 @@ msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4224,7 +4231,7 @@ msgstr "Mærke nøgle" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4260,7 +4267,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Brug \"backquotes\" omkring tabel- og feltnavne" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL-kompatibilitetstilstand" @@ -5829,10 +5836,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Kræver SQL Validator bliver aktiveret" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6100,7 +6107,7 @@ msgstr "%s udvidelsen mangler. Check din PHP-konfiguration." msgid "possible deep recursion attack" msgstr "muligt dybt rekursionsangreb" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6108,47 +6115,55 @@ msgstr "" "Serveren svarer ikke (eller den lokale servers socket er ikke korrekt " "konfigureret)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Serveren svarer ikke." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Tjek venligst privilegier for mappen som indeholder databasen." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Ændre adgangskode" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Ingen adgangskode" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Skriv igen" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Adgangskodehashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" @@ -6278,8 +6293,8 @@ msgstr ", @TABLE@ vil blive tabelnavnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "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 " @@ -6358,7 +6373,7 @@ msgstr "indsendt den %1$s af %2$s" msgid "authored on %1$s by %2$s" msgstr "forfattet den %1$s af %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6368,63 +6383,63 @@ msgstr "" "størrelse, eller dette er en kendt fejl i webkit-baserede browsere (Safari, " "Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s af %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Overfører din importfil ..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Omtrent %MIN min. %SEC sek. resterer." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Omtrent %SEC sek. resterer." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Filen behandles, vær tålmodig." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" "Vær tålmodig; filen uploades. Detaljer om uploaden er ikke tilgængelige." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importerer til den aktuelle server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importerer ind i databasen \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importerer ind i tabellen \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Fil til import:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Filen kan være komprimeret (%s) eller ukomprimeret." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6511,71 +6526,71 @@ msgstr "" "Størrelse på memorybufferen InnoDB bruger til at mellemlagre data og indeks " "på dens tabeller." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Bufferpool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Bufferpoolsforbrug" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Frie sider" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Ændrede sider" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Sider med data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Sider til udskrift" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Travle sider" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Eksklusivt låste (latched) sider" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Bufferpoolaktivitet" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Read-anmodninger" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Write-anmodninger" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Missede læsninger" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Read misses i %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Write waits i %" @@ -6805,8 +6820,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation og yderligere information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s." @@ -6823,126 +6838,126 @@ msgstr "Bloggen The PrimeBase XT af Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De følgende strukturer er enten oprettet eller ændret. Her kan du:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Vis en strukturs indhold ved at klikke på dens navn" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Ændr alle indstillinger ved at klikke på det tilhørende \"Indstilling\" link" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Rediger struktur ved at følge linket \"Struktur\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Gå til databasen: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Rediger indstillinger for %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Gå til tabellen: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Strukturen af %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Gå til view: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binært" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "På grund af feltets længde,
kan det muligvis ikke ændres" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "webserver upload-mappe" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -6986,7 +7001,7 @@ msgstr "Tilføj tabelpræfiks" msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil udføre følgende forespørgsel?" @@ -7273,7 +7288,7 @@ msgstr "Tabel-indstillinger" msgid "Rename table to" msgstr "Omdøb tabel til" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Datalager" @@ -7387,8 +7402,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7469,21 +7484,21 @@ msgstr "Forkert brugernavn/adgangskode. Adgang nægtet." msgid "Can not find signon authentication script:" msgstr "Kunne ikke finde scriptet til autentifikation af log ind:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Filen %s indeholder ikke noget nøgle-id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardwareautentifikation mislykkedes" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Ingen gyldig autorisations-nøgle indkoblet" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Godkender..." @@ -7620,20 +7635,21 @@ msgstr "Vis MIME-typer" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Vært" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Genereringstid" @@ -7889,7 +7905,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldigt kolonneantal i CSV-input på linie %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabelnavn" @@ -8135,7 +8151,7 @@ msgstr "Oprettelse af PDFer" msgid "Displaying Column Comments" msgstr "Viser kolonne-kommentarer" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browser-transformation" @@ -8207,7 +8223,7 @@ msgstr "Fravælg alle" msgid "Slave configuration" msgstr "Slavekonfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Ændr eller rekonfigurer master server" @@ -8220,8 +8236,8 @@ msgstr "" "Hvis ikke, så prøv at indsætte følgende linje i [mysqld] sektionen:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8241,31 +8257,31 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server-ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Tilføj slave replikationsbruger" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Enhver bruger" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8274,27 +8290,27 @@ msgstr "Enhver bruger" msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Denne vært" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Brug tabellen host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8303,7 +8319,7 @@ msgstr "" "Når tabellen host bruges, ignoreres dette felt og værdier lagret i host " "bruges i stedet." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generer adgangskode" @@ -8362,7 +8378,7 @@ msgstr "Detaljer" msgid "Event name" msgstr "Hændelsesnavn" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Hændelsestype" @@ -8706,7 +8722,7 @@ msgstr "Ingen hændelse med navnet %1$s fundet i database %2$s" msgid "There are no events to display." msgstr "Der er ingen hændelser at vise." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8715,7 +8731,7 @@ msgstr "Der er ingen hændelser at vise." msgid "The %s table doesn't exist!" msgstr "Tabellen \"%s\" findes ikke!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8761,91 +8777,91 @@ msgstr "Attributter" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Opret en ny side" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Sidenavn" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatisk layout baseret på" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interne relationer" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Vælg en side, der skal redigeres" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Vælg side" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Vælg tabeller" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolonnenavne" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Vis relationel skema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Vælg Export Relational Type" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Vis gitter" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Vis farve" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Vis tabellernes dimensioner" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Vis alle tabeller med samme bredde" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Data Dictionary" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Vis kun nøgler" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Liggende" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Stående" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientering" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8853,7 +8869,7 @@ msgstr "" "Nuværende side har referencer til tabeller der ikke længere eksisterer. Vil " "du slette disse referencer?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Tegnebræt til/fra" @@ -9154,7 +9170,7 @@ msgstr "Brugere med adgang til "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Bruger" @@ -9293,14 +9309,14 @@ msgstr "Oversigt over brugere" 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." #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9356,11 +9372,11 @@ msgstr "Ryd" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -9457,7 +9473,7 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s blev tømt" @@ -9470,12 +9486,12 @@ msgstr "Sporing er aktiv." msgid "Tracking is not active." msgstr "Sporing er ikke aktiv." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet slettet" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s blev slettet" @@ -9503,14 +9519,14 @@ msgid "Column %s has been dropped" msgstr "Kolonne %s er slettet" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primær" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9520,7 +9536,7 @@ msgid "Spatial" msgstr "Spatial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fuldtekst" @@ -9544,7 +9560,7 @@ msgstr "Relations-visning" msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." @@ -9552,7 +9568,7 @@ msgstr "Du skal tilføje mindst en kolonne." msgid "Add column" msgstr "Tilføj kolonne" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Tilføj %s kolonne(r)" @@ -9575,15 +9591,15 @@ msgstr "Efter %s" msgid "Create an index on  %s columns" msgstr "Opret et indeks på  %s  kolonner" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Rækkestatistik" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statisk" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamisk" @@ -9591,15 +9607,15 @@ msgstr "dynamisk" msgid "partitioned" msgstr "partitioneret" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Rækkelængde" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Rækkestørrelse" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Næste autoindeks" @@ -9645,15 +9661,15 @@ msgstr "Tilføj SPATIAL indeks" msgid "Add FULLTEXT index" msgstr "Tilføj FULLTEXT indeks" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Information" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Pladsforbrug" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektiv" @@ -9686,7 +9702,7 @@ msgstr "" msgid "Move column" msgstr "Fjern kolonne" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9695,11 +9711,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:145 msgid "Transformation options" msgstr "Transformationsindstillinger" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9711,33 +9727,33 @@ msgstr "" "\") eller en apostrof (\"'\") i værdierne, backslash det (for eksempel '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM eller SET data for lang?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Få mere redigeringsplads" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Som defineret:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "første" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "efter %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION-definition" @@ -9922,8 +9938,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin configuration storage er ikke fuldstændigt konfigureret; nogle " -"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik " -"%sher%s." +"udvidede funktioner er blevet deaktiverede. For at finde ud af hvorfor klik %" +"sher%s." #: main.php:468 #, php-format @@ -9941,7 +9957,7 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" @@ -10219,29 +10235,29 @@ msgstr "Filen eksisterer ikke" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Filer" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Trunker viste forespørgsler" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Lognavn" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Position" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Original position" @@ -10249,31 +10265,31 @@ msgstr "Original position" msgid "Character Sets and Collations" msgstr "Tegnsæt og kollationer" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databaser er blevet droppet korrekt." msgstr[1] "%1$d databaser er blevet droppet korrekt." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Databasestatistik" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master replikation" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave replikation" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Slå statistikker til" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10343,39 +10359,39 @@ msgstr "Privilegierne blev korrekt genindlæst." msgid "Unknown error" msgstr "Ukendt fejl" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Ikke muligt at forbinde til master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ikke muligt at læse master log position. Muligt rettighedsproblem på master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Ikke muligt at ændre master" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server ændret til %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Denne server er konfigureret som master i en replikationsproces." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Vis master status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Vis forbundne slaver" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10384,11 +10400,11 @@ msgstr "" "Denne server er ikke konfigureret som master i en replikationsproces. Vil du " "konfigurere den?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Masterkonfiguration" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10402,19 +10418,19 @@ msgstr "" "databaser som standard og tillade kun visse databaser at blive replikeret. " "Vælg tilstand:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; Repliker:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Vælg databaser:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10422,7 +10438,7 @@ msgstr "" "Nu, tilføj de følgende linjer i slutningen af [mysqld] sektionen i din my." "cnf og genstart derefter MySQL serveren." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10432,80 +10448,80 @@ msgstr "" "se en besked, der fortæller, at denne server er konfigureret som " "master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kører ikke!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kører ikke!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Serveren er konfigureret som slave i en replikationsproces. Vil du:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Se slave status tabel" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontrolslave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Fuld start" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Fuld stop" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Nulstil slave" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Start kun SQL Thread" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Stop kun SQL Thread" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Start kun IO Thread" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Stop kun IO Thread" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Fejlhåndtering:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Overspringning af fejl kan føre til usynkroniseret master og slave!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Spring over aktuel fejl" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Spring over næste" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "fejl." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10514,133 +10530,133 @@ msgstr "" "Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Forespørgsel-mellemlager" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Tråde" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Forsinkede inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Nøglemellemlager" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortering" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaktionskoordinator" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (luk) alle tabeller" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Vis åbne tabeller" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Vis slaveværter" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Tøm forespørgsel-mellemlager" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Runtime-information" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Alle statusvariable" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitorering" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Rådgiver" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Antal rækker:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Opdateringsrate: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtre" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Indeholdende ordet:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Vis kun alert-værdier" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrer efter kategori..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Vis uformatterede værdier" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Relaterede links:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Kør analysator" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instruktioner/Opsætning" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10648,7 +10664,7 @@ msgstr "" "Rådgiversystemet kan give anbefalinger om servervariabler ved at analysere " "serverens statusvariabler." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10657,7 +10673,7 @@ msgstr "" "Bemærk dog, at dette system giver anbefalinger baseret på simple beregninger " "og tommelfingerregler, som ikke nødvendigvis passer med dit system." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10667,7 +10683,7 @@ msgstr "" "dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have " "en meget negativ effekt på ydeevnen." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10678,31 +10694,31 @@ msgstr "" "ingen klart synlig forskel var." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Forespørgsler siden startup: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Forespørgsler" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Netværkstrafik siden startup: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denne MySQL-server har kørt i %1$s. Den startede op den %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10710,17 +10726,17 @@ msgstr "" "Denne MySQL server fungerer som master og slave i en " "replikationsproces." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Denne MySQL server fungerer som master i en replikationsproces." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne MySQL server fungerer som slave i en replikationsproces." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10728,11 +10744,11 @@ msgstr "" "For yderligere information om replikationsstatus på serveren gå til replication section." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Status for replikation" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10740,35 +10756,35 @@ msgstr "" "På en travl server er der risiko for at bytetællerne løber over, så disse " "statistikker som rapporteret af MySQL-serveren kan være forkerte." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Modtaget" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Sendt" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Maks. samtidige forbindelser" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Kommando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10776,11 +10792,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antal mislykkede forsøg på at forbinde til MySQL server." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10790,17 +10806,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antal transaktioner der brugte det midlertidige binære log mellemlager." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antal forbindelsesforsøg (lykkedes eller ej) til MySQL server." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10812,11 +10828,11 @@ msgstr "" "overveje at forøge tmp_table_size værdien for at gøre midlertidige tabeller " "hukommelses-baserede i stedet for disk-baserede." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10824,7 +10840,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10832,7 +10848,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10840,23 +10856,23 @@ msgstr "" "Antallet af INSERT DELAYED handler-tråde i brug. Hver forskellig tabel " "hvorpå en bruger INSERT DELAYED får sin egen tråd." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Antallet af gange en række blev slettet fra en tabel." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10866,7 +10882,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10876,7 +10892,7 @@ msgstr "" "antyder det at serveren laver mange fulde indeks scans; for eksempel, SELECT " "col1 FROM foo, antagende at col1 er indekseret." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10885,7 +10901,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10895,7 +10911,7 @@ msgstr "" "hvis du forespørger på en indekskolonne med en range-begrænsning eller hvis " "du udfører et indeks scan." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10903,7 +10919,7 @@ msgstr "" "Antallet af anmodninger om at læse foregående række i nøgleorden. Denne " "læsemetode bruges hovedsageligt til at optimere ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10915,7 +10931,7 @@ msgstr "" "resultatet. Du har sandsynligvis mange forespørgsler der forlanger at MySQL " "scanner hele tabeller eller du har joins der ikke bruger nøgler ordentligt." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10927,35 +10943,35 @@ msgstr "" "enten ikke er ordentligt indekserede eller at dine forespørgsler ikke er " "skrevet til at drage fordel af de indeks du har." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Antallet af anmodninger om at opdatere en række i en tabel." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Antallet af anmodninger om at indsætte en række i en tabel." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antallet af buffer pool sider der er anmodet om at skulle flushes." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10965,7 +10981,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10977,11 +10993,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10990,7 +11006,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10998,11 +11014,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11010,7 +11026,7 @@ msgstr "" "Antallet af logiske reads som InnoDB ikke kunne tilfredsstille fra buffer " "pool og måtte lave en enkelt-side read." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11024,55 +11040,55 @@ msgstr "" "sider først. Denne tæller tæller hvor mange gange det er sket. Hvis buffer " "pool størrelsen er sat ordentligt, skulle denne værdi være lille." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet af doublewrite skrivninger der er udført og antallet af sider der " "er blevet skrevet til dette formål." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11080,35 +11096,35 @@ msgstr "" "Antallet af waits vi har haft fordi log buffer var for lille og vi skulle " "vente på at den blev flushed før vi kunne fortsætte." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11116,51 +11132,51 @@ msgstr "" "Den indkompilerede InnoDB sidestørrelse (standard 16KB). Mange værdier " "tælles i sider; sidestørrelsen gør at man let kan omregne dem til bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gennemsnitstiden for at få en rækkelås, i millisekunder." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brugt på at hente rækkelåse, i millisekunder." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimale tid for at hente en rækkelås, i millisekunder." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Antallet af gange der skulle ventes på en rækkelås." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11169,7 +11185,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11177,7 +11193,7 @@ msgstr "" "Antallet af ubrugte blokke i nøglemellemlageret. Du kan bruge denne værdi " "til at fastslå hvor meget af nøglemellemlagere der er i brug." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11187,15 +11203,15 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Procentdel af anvende nøgle-cache (beregnet værdi)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Antallet af anmodninger om at læse en nøgleblok fra mellemlageret." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11205,7 +11221,7 @@ msgstr "" "stor, er din key_buffer_size værdi sandsynligvis for lille. Mellemlager miss " "raten kan beregnes som Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11213,22 +11229,22 @@ msgstr "" "Missede nøgle-mellemlagringer beregnet som raten af fysiske læsninger " "sammenlignet med læse-forespørgsler (beregnet værdi)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Antallet af anmodninger om at skrive en nøgleblok til mellemlageret." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Antallet af fysiske skrivninger af en nøgleblok til disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procentdel af fysiske skrivninger sammenlignet med skrive-forespørgsler " "(beregnet værdi)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11240,7 +11256,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11248,12 +11264,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Antallet af rækker der venter på at blive skrevet i INSERT DELAYED køer." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11261,19 +11277,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antallet af streams der er åbne (bruges hovedsageligt til logning)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11283,19 +11299,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11308,7 +11324,7 @@ msgstr "" "Forespørgselsmellemlageret bruger en mindst nyligt brugt (LRU) strategi til " "at afgøre hvilke forespørgsler der skal fjernes fra mellemlageret." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11316,19 +11332,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11336,11 +11352,11 @@ msgstr "" "Antallet af joins der ikke bruger indeks. Hvis denne værdi ikke er 0, bør du " "nøje tjekke indeksene på dine tabeller." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Antallet af joins der brugte en range søgning på en reference tabel." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11348,7 +11364,7 @@ msgstr "" "Antallet af joins uden nøgler der tjekker for nøglebrug efter hver række. " "(Hvis denne ikke er 0, bør du nøje tjekke indeks på dine tabeller.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11356,15 +11372,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Antallet af joins som lavede en fuld scan af den første tabel." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antallet af midlertidige tabeller i øjeblikket åbne af SQL tråden." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11372,12 +11388,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dette er TIL hvis denne server er en slave der er forbundet til en master." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11385,13 +11401,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Antallet af forespørgsler der har taget mere end long_query_time sekunder." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11401,23 +11417,23 @@ msgstr "" "denne værdi er høj, bør du overveje at forøge værdien af sort_buffer_size " "systemvariablen." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Antallet af sorteringer udført ved scanning af tabellen." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Antallet af gange en tabellås blev givet øjeblikkeligt." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11429,7 +11445,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11439,11 +11455,11 @@ msgstr "" "som Threads_created/Forbindelser. Hvis denne værdi er rød bør du forøge din " "thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11455,47 +11471,47 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Frekvens for hits i trådmellemlager (beregnet værdi)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Start monitorering" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instruktioner/Opsætning" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Færdig med at omordne/redigere diagrammer" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Tilføj diagram" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Omordne/rediger diagrammer" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Diagramkolonner" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Diagramopstilling" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11503,15 +11519,15 @@ msgstr "" "Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " "muligt at eksportere den, hvis man har en kompleks opstilling." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Gendan standardværdi" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Monitorinstruktioner" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11525,7 +11541,7 @@ msgstr "" "og at slow_query_log eller general_log aktiveres. Bemærk dog, at\n" "general_log genererer en mængde data og forøger server load med op til 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11537,11 +11553,11 @@ msgstr "" "tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " "bruge funktionerne for serverdiagrammer." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Brug af monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11552,7 +11568,7 @@ msgstr "" "'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " "cog på det relevante diagram." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11564,11 +11580,11 @@ msgstr "" "Når det er bekræftet, vil dette indlæse en tabel af grupperede forspørgsler, " "hvor man kan klikke på en given SELECT-forespørgsel for at analysere det." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Bemærk venligst:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11580,86 +11596,86 @@ msgstr "" "tilrådes at vælge kun en lille tidsinterval og at deaktivere general_log og " "tømme dens tabel, når der ikke er behov for den længere." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Foruddefineret diagram" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Statusvariabel/-ble" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Vælg serie:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Almindeligt overvåget" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "eller indtast variabelnavn:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Vis som forskelsværdi" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Anvend divisor" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Tilføj enhed til dataværdier" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Tilføj denne serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Slet serie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Serier i diagram:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Logstatistik" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Valgt tidsinterval:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Resultaterne er grupperet af forespørgselstekst." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Forespørgselsanalysator" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11777,19 +11793,19 @@ msgstr "" "Måldatabasen vil blive fuldstændigt synkroniseret med kildedatabasen. " "Kildedatabasen forbliver uændret." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Variablen blev ikke sat" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Servervariable og indstillinger" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessionsværdi" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Global værdi" @@ -12063,10 +12079,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - " -"%sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-" -"baseret beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en " -"udbyder med mange tusinde brugere." +" Hvis du føler, at dette er nødvendigt, brug yderligere sikring - %" +"sværtsautentifikation%s indstillinger og %sbetroet proxy liste%s. IP-baseret " +"beskyttelse er næppe pålidelig, hvis din IP-adresse hører til en udbyder med " +"mange tusinde brugere." #: setup/lib/index.lib.php:312 #, php-format @@ -12080,8 +12096,8 @@ msgstr "" "Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og " "adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for " "produktionssystemer. Enhver som kender eller gætter din phpMyAdmin URL kan " -"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt " -"%sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." +"direkte få adgang til dit phpMyAdmin panel for denne server. Sæt %" +"sautentifikationstype%s til [kbd]cookie[/kbd] eller [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12126,42 +12142,42 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." msgid "Wrong data" msgstr "Forkerte data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Genereret af" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Mærke" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s er blevet ændret" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Flytning af kolonnen er blevet fuldført." @@ -12292,17 +12308,17 @@ msgstr "Redigér indeks" msgid "Index name:" msgstr "Indeksnavn;:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indekstype:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Føj til indeks  %s kolonne(r)" @@ -12465,38 +12481,38 @@ msgstr "Eksporter som %s" msgid "Show versions" msgstr "Vis versioner" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiver sporing af %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deaktiver nu" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Aktiver sporing af %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiver nu" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Opret version %1$s af %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Spor disse datadefinitionskommandoer:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulations-forespørgsler:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Opret version" @@ -12880,8 +12896,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det aktuelle forhold mellem ledig og total forespørgselsmellemlager er %s%%. " "Det bør være over 80%%" @@ -13035,8 +13051,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% af alle sorteringer bruger midlertidige tabeller. Denne værdi bør være " "mindre end 10%%." diff --git a/po/de.po b/po/de.po index 7fb5c3d15d..c11e8c0605 100644 --- a/po/de.po +++ b/po/de.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 20:57+0200\n" "Last-Translator: Dieter Adriaenssens \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Seite:" @@ -40,36 +40,36 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund Ihrer Sicherheitseinstellungen." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Suche" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Suche" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Schlüsselname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Beschreibung" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Diesen Wert verwenden" @@ -120,18 +120,18 @@ msgstr "Die Datenbank %1$s wurde erzeugt." msgid "Database comment: " msgstr "Datenbankkommentar: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Tabellen-Kommentar" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Spalte" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Spalte" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Standard" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Standard" msgid "Links to" msgstr "Verweise" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Verweise" msgid "Comments" msgstr "Kommentare" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Kommentare" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nein" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Nein" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -275,47 +275,47 @@ msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Alle auswählen" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Datenbank %1$s wurde umbenannt in %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Datenbank %1$s wurde nach %2$s kopiert" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" -"%s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" +"s um herauszufinden warum." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabelle" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Datensätze" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Größe" @@ -345,7 +345,7 @@ msgstr "in Benutzung" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Erzeugt am" @@ -353,7 +353,7 @@ msgstr "Erzeugt am" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Aktualisiert am" @@ -361,7 +361,7 @@ msgstr "Aktualisiert am" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Letzter Check am" @@ -376,7 +376,7 @@ msgstr[1] "%s Tabellen" msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Zum %sDesigner%s wechseln" @@ -408,9 +408,9 @@ msgstr "Verfolgte Tabellen" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Datenbank" @@ -428,66 +428,66 @@ msgstr "Aktualisiert" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Aktion" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Zeige" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten dieser Tabelle" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Löschen" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "nicht aktiv" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versionen" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tabelle verfolgen" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Datenbank-Log" @@ -503,12 +503,12 @@ msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!" msgid "Bad parameters!" msgstr "Ungültige Parameter!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." # Schema is not the right word for it, because a dump contains also data, and # NOT just the scheme. -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Auflistung wurde in Datei %s gespeichert." @@ -532,121 +532,128 @@ msgstr "Auflistung wurde in Datei %s gespeichert." msgid "Invalid export type" msgstr "Ungültiger Typ für Export" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Wert für die Spalte \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Verwende OpenStreetMaps als Basis-Satz" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Punkt hinzufügen" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "LineString" # Ankreis ist richtig http://de.wikipedia.org/wiki/Ankreis -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Ankreis" # Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis # # Ja -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Inkreis" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "LineString hinzufügen" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Inkreis hinzufügen" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Polygon hinzufügen" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Geometrie hinzufügen" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Ausgabe" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Wählen Sie \"GeomFromText\" aus der Spalte \"Funktion\" und kopieren Sie den " "Text in das Feld \"Wert\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -656,7 +663,7 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist das Verfahren nicht " "implementiert oder in Ihrer Konfiguration deaktiviert." -#: import.php:400 +#: import.php:404 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 " @@ -667,31 +674,31 @@ msgstr "" "Konfiguration überschritten. Siehe [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Die Zeichen-Kodierung der Datei kann nicht ohne eine Zeichen-" "Kodierungsbibliothek konvertiert werden" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -699,7 +706,7 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie die Datei erneut " "abschicken, wird der Import fortgesetzt." -#: import.php:513 +#: import.php:517 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." @@ -708,9 +715,9 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von PHP gelockert werden." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt" @@ -724,7 +731,7 @@ msgstr "Zurück" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -733,7 +740,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." msgid "Do you really want to execute \"%s\"?" msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!" @@ -773,7 +780,7 @@ msgstr "Index hinzufügen" msgid "Edit Index" msgstr "Index bearbeiten" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "%d Spalte(n) zum Index hinzufügen" @@ -823,24 +830,24 @@ msgstr "Schließen" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Live Traffic Diagramm" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Live Verbindung/Prozess Diagramm" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Live Abfrage Diagramm" @@ -850,24 +857,24 @@ msgstr "Statische Daten" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Insgesamt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -887,7 +894,7 @@ msgstr "Server-Datenverkehr (in KiB)" msgid "Connections since last refresh" msgstr "Verbindungen seit der letzten Aktualisierung" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prozesse" @@ -905,7 +912,7 @@ msgstr "Anfragen seit der letzten Aktualisierung" msgid "Questions (executed statements by the server)" msgstr "Anfragen (Serverseitig ausgeführte SQL-Befehle)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Abfrage-Statistiken" @@ -952,13 +959,13 @@ msgstr "Auslagerungsspeicher" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1010,32 +1017,32 @@ msgstr "Bytes gesendet" msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Verbindungen" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1049,11 +1056,11 @@ msgstr "%d Tabelle(n)" msgid "Questions" msgstr "Anfragen" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Einstellungen" @@ -1074,12 +1081,12 @@ msgid "Please add at least one variable to the series" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "keine" @@ -1179,7 +1186,7 @@ msgstr "Einstellungen ändern" msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Schaubild-Titel" @@ -1269,7 +1276,7 @@ msgstr "Ausgabe erklären" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Zeit" @@ -1366,8 +1373,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" @@ -1583,12 +1590,12 @@ msgstr "Ausführungszeit der Abfrage" msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Speichern" @@ -1649,8 +1656,8 @@ msgstr "Abfrageergebnisse" msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorieren" @@ -1762,7 +1769,7 @@ msgstr "Zeige Daten Zeile(n)" msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generieren" @@ -1861,63 +1868,63 @@ msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dez" @@ -1955,32 +1962,32 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sa" @@ -2096,16 +2103,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Unerwartetes Zeichen in Zeile %1$s. Tab erwartet, aber \"%2$s\" gefunden" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "pro Sekunde" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "pro Minute" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "pro Stunde" @@ -2122,7 +2129,7 @@ msgstr "Maximal: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentation" @@ -2145,14 +2152,14 @@ msgid "en" msgstr "de" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fehler" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-Befehl" @@ -2170,211 +2177,211 @@ msgstr "SQL-Befehl" msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "SQL-Befehl ausführen" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL validieren" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Inline-Bearbeiten dieses SQL-Befehls" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Messen" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Fehlende(r) Parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Anfang" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Vorherige" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Nächste" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Ende" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Einfügen" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Anzeigen" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operationen" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Durchsuchen Sie Ihren Computer:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Leeren" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Ausführen" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Drucken" @@ -2393,149 +2400,149 @@ msgstr "" msgid "Font size" msgstr "Schriftgröße" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Aufsteigend" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Absteigend" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortierung" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterium" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Kriterienzeilen hinzufügen/entfernen" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Spalten hinzufügen/entfernen" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Aktualisieren" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Verwendete Tabellen" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Oder" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Und" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Einf" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Entf" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Verändern" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "mindestens eines der Wörter" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alle Wörter" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "genau diese Zeichenkette" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "als regulären Ausdruck" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Suchergebnisse für \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Insgesamt %s Treffer" msgstr[1] "Insgesamt %s Treffer" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s Treffer in %2$s" msgstr[1] "%1$s Treffer in %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Löschen" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Durchsuche die Datenbank" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Finde:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "In der/den Tabelle(n):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "In Spalte:" @@ -2580,8 +2587,8 @@ msgstr "Kopfzeilen alle %s Zeilen" msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2658,7 +2665,7 @@ msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Beenden" @@ -2677,8 +2684,8 @@ msgstr "in der Abfrage" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." @@ -2693,7 +2700,7 @@ msgstr "insgesamt" # (s is the abbreviation of "Sekunde", sec is it not (according to # International System of Units), so we wrote the complete one.) -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" @@ -2704,7 +2711,7 @@ msgstr "Die Abfrage dauerte %01.4f Sekunden" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "markierte:" @@ -2714,8 +2721,8 @@ msgstr "markierte:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Alle auswählen" @@ -2753,17 +2760,17 @@ msgstr "Der Verweis wurde nicht gefunden" msgid "Too many error messages, some are not displayed." msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Bei der Datei handelt es sich um keine hochgeladene Datei." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2771,27 +2778,27 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde nur teilweise übertragen." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim hochladen der Datei." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2799,11 +2806,11 @@ msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Die hochgeladene (verschobene) Datei kann nicht gelesen werden." @@ -2812,66 +2819,66 @@ msgstr "Die hochgeladene (verschobene) Datei kann nicht gelesen werden." msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript muss ab hier aktiviert sein" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Kein Index definiert!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indizes" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Kollation" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Der Primärschlüssel wurde gelöscht" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index %s wurde entfernt" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2882,12 +2889,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Datenbanken" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2955,18 +2962,18 @@ msgstr "Benutzer" msgid "Synchronize" msgstr "Gleiche ab" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binäres Protokoll" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikation" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variablen" @@ -3101,8 +3108,8 @@ msgstr "" "Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. " "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3112,11 +3119,11 @@ msgstr "Funktion" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Wert" @@ -3124,62 +3131,62 @@ msgstr "Wert" msgid "Table Search" msgstr "Tabellensuche" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Bearbeiten/Einfügen" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Spalten auswählen (min. eines):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Eigenes Filterkriterium (Argumente für den \"WHERE\"-Ausdruck):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Einträge pro Seite" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Sortierung nach:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Diese Spalte verwenden, um jeden Punkt zu benennen" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maximale Anzahl der darzustellenden Datensätze" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Zusätzliche Suchkriterien" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\") für " "zwei unterschiedliche Spalten" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Punkte anzeigen/bearbeiten" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Anleitung" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Zoom zurücksetzen" @@ -3265,20 +3272,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis " -"-1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" +"Eine kleine Fließkommazahl, erlaubte Werte sind -3,402823466E+38 bis -" +"1,175494351E-38, 0, und 1,175494351E-38 bis 3,402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind " -"-1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " +"Eine Fließkommazahl mit doppelter Genauigkeit, erlaubte Werte sind -" +"1,7976931348623157E+308 bis -2,2250738585072014E-308, 0, und " "2,2250738585072014E-308 bis 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3318,8 +3325,8 @@ msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis " -"%2$s" +"Eine Kombination aus Datum und Uhrzeit, unterstützter Bereich ist %1$s bis %2" +"$s" #: libraries/Types.class.php:323 msgid "" @@ -3572,7 +3579,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabellen" @@ -3586,12 +3593,12 @@ msgstr "Tabellen" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Daten" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Überhang" @@ -3699,7 +3706,7 @@ msgstr "Geöffnet" msgid "Closed" msgstr "Geschlossen" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3837,22 +3844,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Diese Einstellung ist deaktiviert, sie wird nicht angewandt" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Setze Wert: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Voreingestellten Wert wiederherstellen" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Erlaube den Benutzern diesen Wert anzupassen" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Zurücksetzen" @@ -4145,7 +4152,7 @@ msgstr "Zeichensatz der Datei" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4254,7 +4261,7 @@ msgstr "Kennzeichen" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-Typ" @@ -4290,7 +4297,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tabellen- und Feldnamen mit Backticks umschließen" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL-Kompatibilitätsmodus" @@ -5883,10 +5890,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Erfordert das der SQL-Validator aktiviert ist" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6155,7 +6162,7 @@ msgstr "Die Erweiterung %s fehlt. Bitte die PHP-Konfiguration überprüfen." msgid "possible deep recursion attack" msgstr "möglicher Deep-Recursion-Angriff" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6163,50 +6170,58 @@ msgstr "" "Der Server antwortet nicht (evtl. ist der Socket des lokalen MySQL-Servers " "nicht korrekt konfiguriert)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Der Server antwortet nicht." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "Bitte prüfen Sie die Rechte des Verzeichnisses, in dem sich die Datenbank " "befindet." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, " "ist fehlgeschlagen." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Passwort ändern" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Kein Passwort" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Wiederholen" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Password-Verschlüsselung" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" @@ -6338,8 +6353,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -6421,7 +6436,7 @@ msgstr "geschrieben am %1$s von %2$s" # Der Kontext der Fehlermeldung ist mir nicht klar. Daher allgemein # formuliert. -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6431,33 +6446,33 @@ msgstr "" "ein bekannter Fehler in Webkit-basierten Browsern (Safari, Google Chrome, " "Arora etc.) auf." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s von %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Import-Datei wird hochgeladen..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/Sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Verbleibende Zeit etwa %MIN:%SEC Minuten." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Verbleibende Zeit etwa %SEC Sekunden." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Bitte Geduld, die Datei wird verarbeitet." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6465,30 +6480,30 @@ msgstr "" "Bitte warten, bis die Datei übertragen wurde. Details über die Übertragung " "sind nicht verfügbar." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "In den aktuell ausgewählten Server importieren" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importiere in die Datenbank \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importiere in die Tabelle \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Zu importierende Datei:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Datei kann komprimiert (%s) oder unkomprimiert sein." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6575,71 +6590,71 @@ msgstr "" "Die Größe des Arbeitsspeicherpuffers, den InnoDB verwendet, um Daten und " "Indizes zwischenzuspeichern." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB-Status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Auslastung des Puffer-Pools" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "Seiten" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Unbenutzte Seiten" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Inkonsistente Seiten" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Daten enthaltende Seiten" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Zurückzuschreibende Seiten" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Ausgelastete Seiten" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Belegte Seiten" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivität des Puffer-Pools" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Leseanfragen" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Schreibanfragen" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Fehlgeschlagene Leseanfragen" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Schreibverzögerungen" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Fehlgeschlagene Leseanfragen in %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Schreibverzögerungen in %" @@ -6871,8 +6886,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -6889,130 +6904,130 @@ msgstr "The PrimeBase XT-Blog von Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier " "können Sie:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Gehe zur Datenbank: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Gehe zur Tabelle: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Gehe zur Ansicht: %s" # Hide heist im deutschen in der EDV ausblenden -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Verstecken" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7056,7 +7071,7 @@ msgstr "Tabellen-Prefix hinzufügen" msgid "Add prefix" msgstr "Prefix hinzufügen" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?" @@ -7343,7 +7358,7 @@ msgstr "Tabellenoptionen" msgid "Rename table to" msgstr "Tabelle umbenennen in" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Tabellenformat" @@ -7460,8 +7475,8 @@ msgstr "Willkommen bei %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." @@ -7543,21 +7558,21 @@ msgstr "Falscher Benutzername/Passwort. Zugriff verweigert." msgid "Can not find signon authentication script:" msgstr "Konnte Anmelde-Authentifizierungs-Script nicht finden:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Die Datei %s enthält keine Schlüsselnummer" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardware Authentisierung fehlgeschlagen" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Authentifiziere..." @@ -7694,20 +7709,21 @@ msgstr "MIME-Typen anzeigen" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Erstellungszeit" @@ -7969,7 +7985,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Ungültige Anzahl an Spalten im CSV-Import in Zeile %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabellenname" @@ -8229,7 +8245,7 @@ msgstr "Erzeugen von PDFs" msgid "Displaying Column Comments" msgstr "Darstellung von Spaltenkommentaren" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Darstellungsumwandlung" @@ -8303,7 +8319,7 @@ msgstr "Auswahl entfernen" msgid "Slave configuration" msgstr "Slave-Konfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Master-Server wechseln oder neu konfigurieren" @@ -8317,8 +8333,8 @@ msgstr "" "[mysqld] einfügen:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8338,15 +8354,15 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server-ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8354,17 +8370,17 @@ msgstr "" "Nur Slaves, die mit der Option --report-host=host_name gestartet wurden, " "sind in dieser Liste sichtbar." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Jeder Benutzer" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8373,27 +8389,27 @@ msgstr "Jeder Benutzer" msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8402,7 +8418,7 @@ msgstr "" "Wenn die Host-Tabelle aktiv ist, wird dieses Feld ignoriert und stattdessen " "die Werte aus der Host-Tabelle verwendet." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Passwort generieren" @@ -8463,7 +8479,7 @@ msgstr "Details" msgid "Event name" msgstr "Ereignis-Name" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Ereignistyp" @@ -8816,7 +8832,7 @@ msgstr "Es wurde kein Ereignis mit dem Namen %1$s in Datenbank %2$s gefunden" msgid "There are no events to display." msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8825,7 +8841,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." msgid "The %s table doesn't exist!" msgstr "Die Tabelle %s existiert nicht!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8871,91 +8887,91 @@ msgstr "Attribute" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Neue Seite erstellen" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Seitenname" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatische Anordnung basierend auf" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interne Beziehungen" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Bitte wählen Sie die zu bearbeitende Seite" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Seite auswählen" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Tabellenauswahl" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Spaltennamen" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Beziehungsschema anzeigen" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Beziehungsschema exportieren auswählen" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Gitterlinien anzeigen" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "mehrfarbig" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Tabellendimensionen anzeigen" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Alle Tabellen mit der selben Breite anzeigen" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Strukturverzeichnis" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Nur Schlüssel anzeigen" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Querformat" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Hochformat" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Ausrichtung" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papiergröße" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8963,7 +8979,7 @@ msgstr "" "Auf der aktuellen Seite bestehen Referenzen zu Tabellen, die nicht mehr " "existieren. Sollen diese Referenzen gelöscht werden?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Klemmbrett anzeigen" @@ -9273,7 +9289,7 @@ msgstr "Benutzer mit Zugriff auf "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Benutzer" @@ -9410,8 +9426,8 @@ msgstr "Benutzerübersicht" 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 "" "Hinweis: phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden " "MySQL-Tabellen aus. Der Inhalt dieser Tabellen kann sich von den " @@ -9474,11 +9490,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -9577,7 +9593,7 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen PHP-" "Erweiterungen installiert haben." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert" @@ -9590,12 +9606,12 @@ msgstr "Tracking ist aktiviert." msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht" @@ -9623,14 +9639,14 @@ msgid "Column %s has been dropped" msgstr "Spalte %s wurde gelöscht" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primärschlüssel" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9640,7 +9656,7 @@ msgid "Spatial" msgstr "Räumlich" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Volltext" @@ -9664,7 +9680,7 @@ msgstr "Beziehungsübersicht" msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." @@ -9672,7 +9688,7 @@ msgstr "Sie müssen mindestens eine Spalte hinzufügen." msgid "Add column" msgstr "Spalte hinzufügen" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" @@ -9695,15 +9711,15 @@ msgstr "Nach %s" msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Datensatz-Statistiken" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statisch" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamisch" @@ -9711,15 +9727,15 @@ msgstr "dynamisch" msgid "partitioned" msgstr "partitioniert" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Zeilenlänge" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Zeilengröße" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Nächster Autoindex" @@ -9765,15 +9781,15 @@ msgstr "SPATIAL Index hinzufügen" msgid "Add FULLTEXT index" msgstr "FULLTEXT Index hinzufügen" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Information" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektiv" @@ -9806,7 +9822,7 @@ msgstr "" msgid "Move column" msgstr "Spalte verschieben" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9815,11 +9831,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:145 msgid "Transformation options" msgstr "Umwandlungsoptionen" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9831,33 +9847,33 @@ msgstr "" "einfaches Anführungszeichen (\"'\") verwenden, setzen Sie bitte ein " "Backslash vor das Zeichen. (z.B.: '\\\\xyz' oder 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM oder SET Daten zu lang?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Mehr Platz zum Editieren" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Kein(e)" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Wie definiert:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "an den Anfang" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "nach %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION Definition" @@ -10065,7 +10081,7 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Keine Datenbanken" @@ -10346,29 +10362,29 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Dateien" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Protokoll" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Position" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Ursprungsposition" @@ -10376,31 +10392,31 @@ msgstr "Ursprungsposition" msgid "Character Sets and Collations" msgstr "Zeichensätze und Kollationen" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d Datenbank wurde erfolgreich gelöscht." msgstr[1] "%1$d Datenbanken wurden erfolgreich gelöscht." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistik über alle Datenbanken" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master Replikation" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave Replikation" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Datenbankstatistiken aktivieren" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10470,41 +10486,41 @@ msgstr "Die Benutzerprofile wurden neu geladen." msgid "Unknown error" msgstr "Unbekannter Fehler" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Verbindung zu Master %s fehlgeschlagen." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Log-Position des Masters nicht lesbar. Mögliches Rechteproblem auf dem " "Master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Kann Master nicht wechseln" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Master-Server wurde erfolgreich auf %s geändert" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Zeige den Master-Status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Zeige verbundene Slaves" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10513,11 +10529,11 @@ msgstr "" "Dieser Server ist als nicht Master in einem Replikations-Prozess " "konfiguriert. Möchten Sie ihn konfigurieren?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Master-Konfiguration" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10531,19 +10547,19 @@ msgstr "" "repliziert werden soll)/nNur bestimmte Datenbanken replizieren/nBitte wählen " "Sie:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Repliziere alle Datenbanken bis auf:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Repliziere nur:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Bitte Datenbanken auswählen:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10552,7 +10568,7 @@ msgstr "" "hinzufügen. Danach den MySQL-Server neu starten." # translation from go to "OK" as defined in po file -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10562,84 +10578,84 @@ msgstr "" "Daraufhin sollten Sie eine Meldung sehen, dass dieser Server als Master " "konfiguriert ist" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread läuft nicht!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread läuft nicht!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Die Slave Statustabelle sehen" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Die Datenbanken mit dem Master abgleichen" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontrol-Slave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Alles starten" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Alles stoppen" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Slave zurücksetzen" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Nur SQL-Thread starten" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Nur SQL-Thread stoppen" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Nur Ein-/Ausgabethread starten" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Nur Ein-/Ausgabethread stoppen" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Fehlerbehandlung:" -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Überspringe aktuellen Fehler" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Überspringe nächsten" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "Fehler." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10648,12 +10664,12 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Thread %s wurde erfolgreich abgebrochen." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10661,121 +10677,121 @@ msgstr "" "phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Bezeichner" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Abfragen-Zwischenspeicher" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Prozesse" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Temporäre Daten" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Verzögertes Einfügen (delayed inserts)" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Schlüssel-Zwischenspeicher" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Tabellenverknüpfungen (joins)" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortierung" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaktions-Koordinator" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Alle Tabellen aktualisieren (und schließen)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Zeige alle Slave-Hosts" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Zeige den Slave-Status" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Den Abfragen-Zwischenspeicher leeren. (FLUSH)" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Laufzeit-Informationen" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Alle Status Variablen" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Überwachung" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Ratgeber" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Anzahl der Datensätze:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Aktualisierungs-Intervall: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filter" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Beinhalten das Wort:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Zeige nur Warn-Werte" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Nach Kategorie filtern..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Zeige unformatierte Werte" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Verwandte Links:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Analyse durchführen" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Einführung" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10783,7 +10799,7 @@ msgstr "" "Der Ratgeber kann Empfehlungen zu Server-Variablen durch Analyse der Server-" "Status-Variablen geben." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10793,7 +10809,7 @@ msgstr "" "Berechnungen und Faustregeln basieren und nicht umbedingt auf Ihrem System " "funktionieren müssen." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10803,7 +10819,7 @@ msgstr "" "was Sie ändern und wie Sie die Änderungen rückgängig machen können. Falsche " "Optimierungen können sehr negative Effekte hervorrufen." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10814,31 +10830,31 @@ msgstr "" "Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Verbindungen seit Start: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Angaben" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Netzwerk-Datenverkehr seit Start: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Dieser MySQL-Server läuft bereits %1$s. Er wurde am %2$s gestartet." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10846,18 +10862,18 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-" "Prozess." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10865,11 +10881,11 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10878,35 +10894,35 @@ msgstr "" "wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " "ausgegeben werden, falsch sein." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Empfangen" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Gesendet" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Befehl" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10914,12 +10930,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Die maximale Nummer an Fehlversuchen um zu einem MySQL-Server zu verbinden." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10930,20 +10946,20 @@ msgstr "" "und eine temporäre Datei verwendet haben um die Statements der Transaktion " "zu speichern." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Zwischenspeicher " "verwendet haben." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Die Anzahl an Verbindungsversuchen (ob erfolgreich odernicht) zum MySQL-" "Server." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10955,11 +10971,11 @@ msgstr "" "Sie eventuell die Variable tmp_table_size herauf setzen, damit temporäre " "Tabellen im Speicher erzeugt werden statt auf der Festplatte." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10967,7 +10983,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10975,7 +10991,7 @@ msgstr "" "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden, und bei " "denen ein Fehler auftrat (z. B. duplicate key)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10983,23 +10999,23 @@ msgstr "" "Anzahl der verzögerten Insert-Handler-Prozesse in Benutzung. Jede einzelne " "Tabelle mit verzögerten Inserts bekommt einen eigenen Prozess." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Anzahl der Datensätze, die aus Tabellen gelöscht wurden." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11009,7 +11025,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11020,7 +11036,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11029,7 +11045,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11040,7 +11056,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11049,7 +11065,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11062,7 +11078,7 @@ msgstr "" "haben Sie wahrscheinlich viele Anfragen, die MySQL zwingen, ganze Tabellen " "zu scannen, oder Sie haben Joins, die Schlüssel nicht richtig benutzen." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11075,36 +11091,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in einer Tabelle zu aktualisieren." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Anzahl der Anfragen, eine Zeile in eine Tabelle einzufügen." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Anzahl der Seiten im Puffer-Pool, die zurückgeschrieben werden müssen." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11114,7 +11130,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11126,11 +11142,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11138,7 +11154,7 @@ msgstr "" "Anzahl \"random\" read-aheads durch InnoDB. Dies geschieht wenn eine Abfrage " "einen großen Teil einer Tabelle durchsucht aber in zufälliger Reihenfolge." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11146,11 +11162,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11158,7 +11174,7 @@ msgstr "" "Anzahl an Lesevorgängen die InnoDB nicht aus dem Zwischenspeicher bedienen " "konnte und deshalb einen Einzel-Seiten-Lesevorgang starten musste." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11173,53 +11189,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Anzahl der ausgeführten doublewrite Schreibzugriffe und die Anzahl der " "Seiten die dafür geschrieben wurden." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11227,35 +11243,35 @@ msgstr "" "Wie oft gewartet werden musste weil der Protokoll-Zwischenspeicher zu klein " "war und deshalb gewartet wurde das er geleert wird." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11264,55 +11280,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Durchschnittliche Wartezeite um eine Datensatz-Sperre zu bekommen, in " "Millisekunden." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Summe aller Wartezeiten um Datensatz-Sperren zu bekommen, in Millisekunden." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Längste Wartezeite um eine Datensatz-Sperre zu bekommen, in Millisekunden." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Wie oft auf ein Datensatz-Sperre gewartet werden musste." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11321,7 +11337,7 @@ msgstr "" "noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " "als Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11330,7 +11346,7 @@ msgstr "" "Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " "zu bestimmen." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11339,18 +11355,18 @@ msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" "Zwischenspeicher." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" "Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Zwischenspeicher zu " "lesen." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11361,7 +11377,7 @@ msgstr "" "Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " "berechnet werden." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11369,25 +11385,25 @@ msgstr "" "Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " "physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Zwischenspeicher zu " "schreiben." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" "Die Anzahl physikalischer Schreibvorgänge eines Schlüssel-Blocks auf Platte." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Prozentsatz der physikalischen Schreib-Operationen im Vergleich zu Schreib-" "Anfragen (berechneter Wert)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11397,7 +11413,7 @@ msgstr "" "berechnet. Nützlich um verschiedene Formulierungen für eine Abfrage zu " "vergleichen. Der Wert 0 besagt das bisher keine Abfrage übersetzt wurde." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11405,13 +11421,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Anzahl der Datensätze, die in INSERT-DELAYED-Warteschleifen darauf warten, " "geschrieben zu werden." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11419,20 +11435,20 @@ msgstr "" "Anzahl der Tabellen, die geöffnet wurden. Wenn Opened_tables hoch ist, ist " "Ihre table_cache-Variable wahrscheinlich zu niedrig." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Anzahl der geöffneten Streams (hauptsächlich zum Protokollieren benutzt)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11442,19 +11458,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Zwischenspeicher." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11468,7 +11484,7 @@ msgstr "" "stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " "lag." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11476,19 +11492,19 @@ msgstr "" "Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " "möglich, oder aufgrund der query_cache_type Einstellung)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Zwischenspeicher." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11496,13 +11512,13 @@ msgstr "" "Anzahl der Joins ohne Schlüssel. Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Anzahl der Joins, bei denen eine Bereichssuche auf die Referenztabelle statt " "fand." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11511,7 +11527,7 @@ msgstr "" "Schlüsselbenutzung geprüft wurde. (Wenn dieser Wert nicht 0 ist sollten die " "Indizes der Tabellen sorgfältig überprüft werden.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11519,16 +11535,16 @@ msgstr "" "Anzahl der Joins, bei denen Bereiche auf die erste Tabelle benutzt wurden. " "(Es ist normalerweise unkritisch, wenn dieser Wert hoch ist.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Anzahl der Joins, bei denen die erste Tabelle gescannt wurde." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Anzahl der temporären Tabellen, die momentan vom Slave-Prozess geöffnet sind." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11536,13 +11552,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dieser Wert steht auf ON wenn dieser Server ein Slave ist und mit dem Master " "verbunden ist." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11550,12 +11566,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Anzahl der Anfragen, die länger als long_query_time benötigten." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11565,25 +11581,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Anzahl der Sortiervorgänge, die durchgeführt wurden, indem die Tabelle " "gescannt wurde." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11595,7 +11611,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11605,11 +11621,11 @@ msgstr "" "Zugriffsrate kann mit Threads_created/Connections berechnet werden. Wenn " "dieser Wert rot ist, sollte der thread_cache_size erhöht werden." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11621,47 +11637,47 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Überwachung starten" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Einführung/Einrichtung" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Umordnen/bearbeiten der Schaubilder beendet" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Schaubild hinzufügen" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Schaubilder umordnen/bearbeiten" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11670,15 +11686,15 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Zurücksetzen" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Einführung zur Überwachung" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11693,7 +11709,7 @@ msgstr "" "general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " "erhöhen kann." -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11705,11 +11721,11 @@ msgstr "" "mit PhpMyAdmin. Protokollierung in eine Tabelle wird von MySQL 5.1.6 und " "höher unterstützt. Sie können dennoch die Server Diagramm-Funktionen nutzen." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Verwendung der Überwachung:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11720,7 +11736,7 @@ msgstr "" "Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " "das Zahnrad-Icon des entsprechenden Schaubilds verwenden." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11733,11 +11749,11 @@ msgstr "" "gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " "um diese weiter zu analysieren." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Bitte beachten Sie:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11749,89 +11765,89 @@ msgstr "" "aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " "auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Vordefiniertes Diagramm" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Status Variable(n)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Serie auswählen:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Allgemein-überwacht" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "oder Variablen-Namen eingeben:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Den Wert als Unterschied zeigen" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Divisor hinzufügen" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Einheiten an Datenwerte anfügen" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Diese Serie hinzufügen" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Serien löschen" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Serien im Schaubild:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Protokoll Statistik" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Ausgewählte Zeit-Spanne:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Bitte wählen Sie das Protokoll aus, von dem Statistiken generiert werden " "sollen." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Query Analyzer" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d Sekunde" msgstr[1] "%d Sekunden" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11950,19 +11966,19 @@ msgstr "" "Ziel-Datenbank wird komplett mit der Quell-Datenbank abgeglichen, wobei die " "Quell-Datenbank unverändert bleibt." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Setzen der Variable fehlgeschlagen" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Servervariablen und -einstellungen" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Wert für diese Sitzung" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globaler Wert" @@ -12261,8 +12277,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " -"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" +"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12309,42 +12325,42 @@ msgstr "" msgid "Wrong data" msgstr "Fehlerhafte Daten" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Ansicht als PHP-Code" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Erstellt von" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Titel" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Die Spalten wurden erfolgreich verschoben." @@ -12475,18 +12491,18 @@ msgstr "Index bearbeiten" msgid "Index name:" msgstr "Indexname:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Nur der Name des Primärschlüssels darf und muß \"PRIMARY\" " "lauten!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indextyp:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "%s Spalte(n) zum Index hinzufügen" @@ -12653,38 +12669,38 @@ msgstr "Export als %s" msgid "Show versions" msgstr "Versionen anzeigen" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Verlaufs-Report für %s deaktivieren" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Verlaufs-Report für %s aktivieren" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Jetzt aktivieren" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Version %1$s von %2$s erzeugen" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Diese Datenbeschreibungsbefehle (DDL) verfolgen:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Diese Datenbearbeitungsbefehle (DML) verfolgen:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Erzeuge Version" @@ -13069,8 +13085,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Das aktuelle Verhältnis von freiem Abfrage-Zwischenspeicher zur Größe des " "gesamten Abfrage-Zwischenspeichers ist %s%%. Es sollte über 80%% betragen" @@ -13227,8 +13243,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% aller Sortierungen verursachen temporäre Tabellen, dieser Wert sollte " "kleiner als 10%% sein." @@ -14458,8 +14474,8 @@ msgstr "concurrent_insert ist auf 0 gesetzt" #~ "directory %s." #~ msgstr "" #~ "Die Unterstützung für Oberflächendesigns ist deaktiviert. Bitte " -#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis " -#~ "%s." +#~ "überprüfen Sie Ihre Konfiguration und / oder Ihre Designs im Verzeichnis %" +#~ "s." #~ msgid "The following queries have been executed:" #~ msgstr "Die folgenden Abfragen wurden ausgeführt:" diff --git a/po/el.po b/po/el.po index 5dcca284f0..0175aae773 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-22 14:08+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: Greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Σελίδα:" @@ -39,36 +39,36 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις " "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Αναζήτηση" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Αναζήτηση" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Περιγραφή" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Χρήση αυτής της τιμής" @@ -119,18 +119,18 @@ msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Σχόλια πίνακα" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Σχόλια πίνακα" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Στήλη" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Στήλη" msgid "Type" msgstr "Τύπος" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Τύπος" msgid "Null" msgstr "Κενό" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Κενό" msgid "Default" msgstr "Προεπιλογή" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Προεπιλογή" msgid "Links to" msgstr "Σύνδεση με" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Σύνδεση με" msgid "Comments" msgstr "Σχόλια" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Σχόλια" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Όχι" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Όχι" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ναι" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Επιλογή όλων" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Αποεπιλογή όλων" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Η βάση δεδομένων %1$s μετονομάστηκε σε %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Η βάση δεδομένων %1$s αντιγράφηκε στη %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "Πίνακας" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Εγγραφές" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Μέγεθος" @@ -344,7 +344,7 @@ msgstr "σε χρήση" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Δημιουργία" @@ -352,7 +352,7 @@ msgstr "Δημιουργία" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Τελευταία ενημέρωση" @@ -360,7 +360,7 @@ msgstr "Τελευταία ενημέρωση" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Tελευταίος έλεγχος" @@ -375,7 +375,7 @@ msgstr[1] "%s πίνακες" msgid "You have to choose at least one column to display" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Αλλαγή στον %sεικονικός μάστορας%s" @@ -407,9 +407,9 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Βάση" @@ -427,66 +427,66 @@ msgstr "Ενημερώθηκε" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Κατάσταση" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Εμφάνιση" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Διαγραφή" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "ενεργή" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "μη ενεργή" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Παρακολούθηση πίνακα" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" @@ -502,12 +502,12 @@ msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να msgid "Bad parameters!" msgstr "Μη έγκυρες παράμετροι!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." @@ -529,117 +529,124 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." msgid "Invalid export type" msgstr "Μη έγκυρος τύπος εξαγωγής" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Τιμή για τη στήλη «%s»" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Γεωμετρία" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Σημείο" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "Χ" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Υ" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Σημείο %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Προσθήκη σημείου" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Εξωτερικός δακτύλιος" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Εσωτερικός δακτύλιος" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Πολύγωνο" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Προσθήκη πολυγώνου" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Εξαγόμενο" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Επιλέξτε «GeomFromText» από τη στήλη «συνάρτηση» και επικολήστε το παρακάτω " "κείμενο στο πεδίο «Τιμή»" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " -"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" +"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:400 +#: import.php:404 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 " @@ -660,29 +667,29 @@ msgstr "" "της ΡΗΡ. Δείτε τις [a@./Documentation.html#faq1_16@Documentation]ΣΑΕ 1.16[/" "a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Αδύνατη η μετατροπή της κωδικοποίησης χωρίς τη βιβλιοθήκη μετατροπής " "κωδικοποίησης" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -690,7 +697,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, επανυποβάλτε το ίδιο αρχείο και η εισαγωγή θα συνεχίσει." -#: import.php:513 +#: import.php:517 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." @@ -699,9 +706,9 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς" @@ -717,7 +724,7 @@ msgstr "" "Το phpMyAdmin είναι πιο φιλικό με έναν που υποστηρίζει frames " "φυλλομετρητή." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -726,7 +733,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -766,7 +773,7 @@ msgstr "Προσθήκη Ευρετηρίου" msgid "Edit Index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Προσθήκη %d στήλης(ών) στο ευρετήριο" @@ -816,24 +823,24 @@ msgstr "Κλείσιμο" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Διάγραμμα τρέχοντος ερωτήματος" @@ -843,24 +850,24 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -880,7 +887,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)" msgid "Connections since last refresh" msgstr "Συνδέσεις από την τελευταία ανανέωση" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Διεργασίες" @@ -898,7 +905,7 @@ msgstr "Ερωτήσεις από την τελευταία ανανέωση" msgid "Questions (executed statements by the server)" msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Στατιστικά ερωτήματος" @@ -944,13 +951,13 @@ msgstr "Αδράνεια συστήματος" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1002,32 +1009,32 @@ msgstr "Σταλθέντα Bytes" msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Συνδέσεις" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1041,11 +1048,11 @@ msgstr "%d πίνακας(ες)" msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1066,12 +1073,12 @@ msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Καμία" @@ -1173,7 +1180,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" @@ -1262,7 +1269,7 @@ msgstr "Επεξήγηση προϊόντος" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Χρόνος" @@ -1360,8 +1367,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" @@ -1573,12 +1580,12 @@ msgstr "Χρόνος εκτέλεσης ερωτήματος" msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Αποθήκευση" @@ -1639,8 +1646,8 @@ msgstr "Ααποτελέσματα ερωτήματος" msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Παράληψη" @@ -1748,7 +1755,7 @@ msgstr "Προβολή γραμμής(ών) δεδομένων" msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Παραγωγή" @@ -1847,63 +1854,63 @@ msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Δεκ" @@ -1941,32 +1948,32 @@ msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Σάβ" @@ -2080,19 +2087,19 @@ msgstr "Μη έγκυρη χαρακτήρες στη γραμμή %s" #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε " -"«%2$s»" +"Μη έγκυρος χαρακτήρας στη γραμμή %1$s. Αναμενότας στηλοθέτης, αλλά βρέθηκε «%2" +"$s»" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "ανά λεπτό" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "ανά ώρα" @@ -2109,7 +2116,7 @@ msgstr "Μέγιστο μέγεθος: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -2132,14 +2139,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Λάθος" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Εντολή SQL" @@ -2157,212 +2164,212 @@ msgstr "Εντολή SQL" msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Επικύρωση SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Δημιουργία προφίλ" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Κυρ" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Απολεσθείσα παράμετρος:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Αρχή" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Προηγούμενη" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Επόμενη" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Τέλος" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Δομή" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Προσθήκη" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Περιήγηση" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Άδειασμα" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Εκτύπωση" @@ -2381,149 +2388,149 @@ msgstr "" msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Αύξουσα" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Φθίνουσα" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ταξινόμηση" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Κριτήρια" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Προσθήκη/Αφαίρεση Στηλών" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ενημέρωση Ερωτήματος" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Χρήση Πινάκων" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ενωση" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Τομή" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Εισαγωγή" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Διαγραφή" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Τροποποίηση" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση δεδομένων %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "όλους τους όρους" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "την ακριβή φράση" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "ως κανονική έκφραση" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Αποτελέσματα αναζήτησης για «%s» %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Σύνολο: %s αποτέλεσμα" msgstr[1] "Σύνολο: %s αποτελέσματα" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s απατέλεσμα στο %2$s" msgstr[1] "%1$s αποτελέσματα στο %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Διαγραφή" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Αναζήτηση στη βάση δεδπμένων" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Λέξεις ή τιμές για αναζήτηση (μπαλαντέρ: «%»):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Έυρεση:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Μέσα στους πίνακες:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" @@ -2568,8 +2575,8 @@ msgstr "Κεφαλίδες κάθε %s εγγραφές" msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2646,7 +2653,7 @@ msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Τερματισμός" @@ -2665,11 +2672,11 @@ msgstr "στην εντολή" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2679,7 +2686,7 @@ msgstr "Εμφάνιση εγγραφών" msgid "total" msgstr "συνολικά" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" @@ -2690,7 +2697,7 @@ msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Με τους επιλεγμένους:" @@ -2700,8 +2707,8 @@ msgstr "Με τους επιλεγμένους:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Επιλογή όλων" @@ -2739,17 +2746,17 @@ msgstr "Δεν βρέθηκε η σύνδεση" msgid "Too many error messages, some are not displayed." msgstr "Πολλά μηνύματα σφάλματος, ορισμένα δεν εμφανίζονται." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Το αρχείο δεν ήταν αρχείο αποστολής." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2757,27 +2764,27 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2785,11 +2792,11 @@ msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation." "html#faq1_11@Documentation]ΣΑΕ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχείου αποστολής." @@ -2798,66 +2805,66 @@ msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχ msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένη την Javascript" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Δεν ορίστηκε ευρετήριο!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Ευρετήρια" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Σύνθεση" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Σχόλιο" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Το πρωτεύον κλειδί διεγράφη" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Το ευρετήριο %s διεγράφη" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2868,12 +2875,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Βάσεις δεδομένων" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Διακομιστής" @@ -2941,18 +2948,18 @@ msgstr "Χρήστες" msgid "Synchronize" msgstr "Συγχρονισμός" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Αναπαραγωγή" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Μεταβλητές" @@ -3089,8 +3096,8 @@ msgstr "" "παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει " "αλλαχτεί." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Συνάρτηση" @@ -3100,11 +3107,11 @@ msgstr "Συνάρτηση" msgid "Operator" msgstr "Τελεστής" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Τιμή" @@ -3112,62 +3119,62 @@ msgstr "Τιμή" msgid "Table Search" msgstr "Αναζήτηση Πίνακα" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Επεξεργασία/Προσθήκη" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Επιλογή πεδίων (τουλάχιστον ένα):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Εγγραφές ανά σελίδα" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Σειρά εμφάνισης:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Χρησιμοποιήστε αυτή τη στήλη για την ετικέτα κάθε σημείου" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Πρόσθετα κριτήρια αναζήτησης" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Εκτέλεσε ένα «επερώτημα ανά παράδειγμα» (χαρακτήρας μπαλαντέρ «%») για δύο " "διαφρετικές στήλες" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Αναζήτηση/Επεξεργασία των σημείων" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Πως να το χρησιμοποιήσετε" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Επανφορά εστίασης" @@ -3254,21 +3261,21 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι " -"-3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως " -"3.402823466E+38" +"Ένας μικρός αριθμός κινητής υποδιαστολής, επιτρεπτές τιμές είναι -" +"3.402823466E+38 έως -1.175494351E-38, 0, και 1.175494351E-38 έως 3.402823466E" +"+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι " -"-1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " +"Ένας αριθμός κινητής υποδιαστολής διπλής ακρίβειας, επιτρεπτές τιμές είναι -" +"1.7976931348623157E+308 έως -2.2250738585072014E-308, 0, και " "2.2250738585072014E-308 έως 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3558,7 +3565,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Πίνακες" @@ -3572,12 +3579,12 @@ msgstr "Πίνακες" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Δεδομένα" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Περίσσεια" @@ -3685,7 +3692,7 @@ msgstr "Άνοιγμα" msgid "Closed" msgstr "Κλεισμένο" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3826,22 +3833,22 @@ msgstr "" "Αυτή η ρύθμιση είναι απενεργοποιημένη και δεν θα εφαρμοστεί στις ρυθμίσεις " "σας" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Ορισμός τιμής: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Επαναφορά προεπιλεγμένης τιμής" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Επιτρέπεται στους χρήστες να προσαρμόσουν αυτή την τιμή" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Επαναφορά" @@ -4132,7 +4139,7 @@ msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Μορφοποίηση" @@ -4241,7 +4248,7 @@ msgstr "Κλειδί ετικέτας" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Τύπος MIME" @@ -4277,7 +4284,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Χρήση ανάποδων εισαγωγικών στα ονόματα των πινάκων και των στηλών" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Κατάσταση συμβατότητας SQL" @@ -5885,10 +5892,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποιητή SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6165,7 +6172,7 @@ msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσει msgid "possible deep recursion attack" msgstr "πιθανή βαθειά ανάδρομή επίθεση" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6173,46 +6180,54 @@ msgstr "" "Ο διακομιστής δεν αποκρίνεται (ή ο τοπικός διακομιστής δεν έχει ρυθμιστεί " "σωστά)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Ο διακομιστής δεν αποκρίνεται." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Ελέξτε τα δικαιώματα του φακέλου που περιέχει τη βάση δεδομένων." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Λεπτομέρειες..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Επαναεισαγωγή" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Μείγμα κωδικού πρόσβασης" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Συμβατό με MySQL 4.0" @@ -6343,8 +6358,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -6424,7 +6439,7 @@ msgstr "έγινε την %1$s από %2$s" msgid "authored on %1$s by %2$s" msgstr "δημιουργήθηκε την %1$s από %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6434,33 +6449,33 @@ msgstr "" "αυτό είναι ένα γνωστό σφάλμα φυλλομετρητή (Safari, Google Chrome, Arora " "κλπ.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s από %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Αποστολή του αρχείου εισαγωγής σας..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/δευτ." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Απομένουν περίπου %MIN λεπτά %SEC δευτερόλεπτα." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Απομένουν περίπου %SEC δευτερόλεπτα." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Η εισαγωγή του αρχείου είναι σε εξέλιξη, υπομονή." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6468,30 +6483,30 @@ msgstr "" "Υπομονή, το αρχείο αποστέλεται. Λεπτομέρειες για την αποστολή δεν είναι " "διαθέσιμες." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Εισαγωγή στον τρέχοντα διακομιστή" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Εισαγωγή στη βάση δεδομένων «%s»" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Εισαγωγή στον πίνακα «%s»" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Αρχείο για εισαγωγή:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Το αρχείο μπορεί να συμπιεστεί (%s) ή να αποσυμπιεστεί." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6580,71 +6595,71 @@ msgstr "" "Το μέγεθος της μνήμης buffer στην InnoDB χρησιμοποιείται σε λανθάνοντα " "δεδομένα και ευρετήρια των πινάκων της." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Χρήση Buffer Pool" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "σελίδες" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Ελέυθερες σελίδες" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Προβληματικές σελίδες" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Σελίδες που περιέχουν δεδομένα" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Σελίδες για να εκκαθαριστούν" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Απασχολημένες σελίδες" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Κλειδωμένες σελίδες" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Δραστηριότητα Buffer Pool" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Αιτήσεις ανάγνωσεης" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Αιτήσεις εγγραφής" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Απώλειες ανάγνωσης" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Αναμονές εγγραφής" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Απώλειες ανάγνωσης σε ποσοστό" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Αναμονές εγγραφής σε ποσοστό" @@ -6882,11 +6897,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " -"%sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" +"sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:135 msgid "Related Links" @@ -6900,127 +6915,127 @@ msgstr "Το Ιστολόγιο του PrimeBase XT από τον Paul McCullagh msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Μετάβαση στη βάση δεδομένων: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Επεξεργασία ρυθμίσεων για %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Μετάβαση στον πίνακα: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Δομή του %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Μετάβαση στην προβολή: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Δυαδικό" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" "Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7064,7 +7079,7 @@ msgstr "Προσθήκη προθέματος πίνακα" msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" @@ -7351,7 +7366,7 @@ msgstr "Επιλογές πίνακα" msgid "Rename table to" msgstr "Μετονομασία πίνακα σε" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" @@ -7465,8 +7480,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 για να δημιουργήσετε ένα." @@ -7549,21 +7564,21 @@ msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβα msgid "Can not find signon authentication script:" msgstr "Αδύνατη η εύρεση του κώδικα πιστοποίησης σύνδεσης:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Το αρχείο %s δεν περιέχει καμιά ταυτότητα κλειδιού" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Η επικύρωση του υλικού απέτυχε" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί επικύρωσης" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Επικύρωση..." @@ -7700,20 +7715,21 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Φιλοξενητής" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Χρόνος δημιουργίας" @@ -7970,7 +7986,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV στη γραμμή %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Ονομασία πίνακας" @@ -8075,8 +8091,8 @@ msgstr "" "επιλογή για να ορίσετε μια μορφή ημερομηνίας-ώρας. Η τρίτη επιλογή ορίζει αν " "θέλετε να δείτε την τοπική ή την παγκόσμια ώρα (χρήση «local» ή «utc» " "αντίστοιχα). Σύμφωνα με αυτό, η μορφή της ημερομηνίας έχει διαφορετική τιμή " -"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP " -"και για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." +"- για το «local» δείτε την τεκμηρίωση για τη συνάρτηση strftime() της PHP και " +"για το «utc» γίνεται χρησιμοποιώντας τη συνάρτηση gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -8222,7 +8238,7 @@ msgstr "Δημιουργία αρχείων PDF" msgid "Displaying Column Comments" msgstr "Εμφάνιση σχολίων πεδίων" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" @@ -8297,7 +8313,7 @@ msgstr "Απεπιλογή όλων" msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" @@ -8310,8 +8326,8 @@ msgstr "" "(my.cnf). Αν όχι, προσθέστε την παρακάτω γραμμή στον τομέα [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8331,15 +8347,15 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Μεταβλητή" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Ταυτότητα Διακομιστή" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8347,17 +8363,17 @@ msgstr "" "Μόνο οι δευτερεύοντες που εκκινούν με την ρύθμιση --report-host=host_name " "είναι ορατές σε αυτή τη λίστα." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8366,27 +8382,27 @@ msgstr "Οποιοσδήποτε χρήστης" msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8395,7 +8411,7 @@ msgstr "" "Όταν χρησιμοποιείται ο Οικείος πίνακας, παραβλέπεται αυτό το πεδίο και " "χρησιμοποιούνται τιμές που είναι αποθηκευμένες στον Οικείο πίνακα." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Παραγωγή Κωδικού Πρόσβασης" @@ -8456,7 +8472,7 @@ msgstr "Λεπτομέρειες" msgid "Event name" msgstr "Όνομα συμβάντος" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Τύπος συμβάντος" @@ -8803,7 +8819,7 @@ msgstr "Κανένα συμβάν με ονομασία %1$s δεν βρέθηκ msgid "There are no events to display." msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8812,7 +8828,7 @@ msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση." msgid "The %s table doesn't exist!" msgstr "Ο πίνακας «%s» δεν υπάρχει!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8858,91 +8874,91 @@ msgstr "Χαρακτηριστικά" msgid "Extra" msgstr "Πρόσθετα" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Δημιουργία νέας σελίδας" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Όνομα σελίδας" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Αυτόματη διάταξη με βάση το" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Παρακαλώ επιλέξτε σελίδα για επεξεργασία" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Επιλογή σελίδας" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Επιλογή Πινάκων" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Ονόματα στηλών" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Προβολή σχεσιακού σχήματος" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Επιλογή Τύπου Συσχέτισης Εξαγωγής" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Εμφάνιση πλέγματος" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Εμφάνιση χρωμάτων" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Εμφάνιση διαστάσεων πινάκων" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Εμφάνιση όλων των πινάκων με το ίδιο πλάτος;" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Μόνο ερφάνιση κλειδιών" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Οριζόντια διάταξη" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Κάθετη διάταξη" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Προσανατολισμός" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Μέγεθος χαρτιού" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8950,7 +8966,7 @@ msgstr "" "Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να " "διαγραφούν αυτές οι αναφορές;" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Εναλλαγή πίνακα σχεδιασμού" @@ -9260,7 +9276,7 @@ msgstr "Χρήστες με πρόσβαση στη βάση «%s»" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Χρήστης" @@ -9398,8 +9414,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. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9461,11 +9477,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -9561,7 +9577,7 @@ msgstr "" "Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει " "της απαραίτητες επεκτάσεις της PHP όπως περιγράφεται στην %sτεκμηρίωση%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Ο πίνακας %s άδειασε" @@ -9574,12 +9590,12 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη." msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Ο πίνακας %s διεγράφη" @@ -9607,14 +9623,14 @@ msgid "Column %s has been dropped" msgstr "Η στήλη %s διεγράφη" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Πρωτεύον" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Ευρετήριο" @@ -9624,7 +9640,7 @@ msgid "Spatial" msgstr "Χωρική" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Πλήρες κείμενο" @@ -9648,7 +9664,7 @@ msgstr "Εμφάνιση συσχετίσεων" msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." @@ -9656,7 +9672,7 @@ msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα π msgid "Add column" msgstr "Προσθήκη στήλης" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Προσθήκη %s στήλης(ών)" @@ -9679,15 +9695,15 @@ msgstr "Μετά το %s" msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε  %s  στήλες" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "στατικό" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "δυναμικά" @@ -9695,15 +9711,15 @@ msgstr "δυναμικά" msgid "partitioned" msgstr "κατατμήθηκε" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Μέγεθος γραμμής" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Μέγεθος εγγραφής" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Επόμενη αυτόματη αρίθμηση" @@ -9749,15 +9765,15 @@ msgstr "Προσθήκη ευρετηρίου SPATIAL" msgid "Add FULLTEXT index" msgstr "Προσθήκη ευρετηρίου FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Πληροφορία" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Χρήση χώρου" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Αποτελεσματικός" @@ -9790,7 +9806,7 @@ msgstr "" msgid "Move column" msgstr "Απομάκρυνση στήλης" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9799,11 +9815,11 @@ msgstr "" "Για μία λίστα με τις διαθέσιμες μετατροπές και τις μετατροπές τύπου MIME, " "πατήστε %sπεριγραφές μετατροπών%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Επιλογές μετατροπής" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9815,33 +9831,33 @@ msgstr "" "εισαγωγικά («'») στις τιμές, χρησιμοποιείτε καθέτους (παράδειγμα '\\\\χψω' ή " "'α\\'β')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Τα δεδομένα ENUM ή SET είναι πολύ μεγάλα;" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Λήψη περισσότερου χώρου επεξεργασίας" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Καμία" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "πρώτη" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "μετά το %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Ορισμός PARTITION" @@ -10029,8 +10045,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " -"%sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" +"sεδώ%s." #: main.php:468 #, php-format @@ -10050,7 +10066,7 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" @@ -10331,29 +10347,29 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Όνομασία καταγραφής" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Θέση" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Αρχική θέση" @@ -10361,31 +10377,31 @@ msgstr "Αρχική θέση" msgid "Character Sets and Collations" msgstr "Σύνολα και Συνθέσεις Χαρακτήρων" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d βάση δεδομένων διεγράφηκε επιτυχώς." msgstr[1] "%1$d βάσεις δεδομένων διεγράφηκαν επιτυχώς." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Στατιστικά βάσης" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Πρωτεύουσα αναπαραγωγή" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Ενεργοποίηση Στατιστικών" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10455,42 +10471,42 @@ msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώ msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Αδύνατη η σύνδεση στον πρωτεύοντα %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Αδύνατη η ανάγνωση της θέσης πρωτεύουσας καταγραφής. Πιθανό πρόβλημα " "δικαιωμάτων." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10499,11 +10515,11 @@ msgstr "" "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Ρύθμιση πρωτεύοντος" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10518,19 +10534,19 @@ msgstr "" "παραβλέψετε όλες τις βάσεις δεδομένων ως προεπιλογή και να επιτρέψετε μόνο " "σε ορισμένες να αναπαράγονται. Επιλέξτε:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Αναπαραγωγή όλων των βάσεων δεδομένων. Παράβλεψη:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Παράβλεψη όλων των βάσεων δεδομένων. Αναπαραγωγή:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Επιλέξτε βάσεις δεδομένων:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10538,7 +10554,7 @@ msgstr "" "Τώρα, προσθέστε της ακόλουθες γραμμές στο τέλος του τομέα [mysqld] του " "αρχείου my.cnf και επανεκκινήστε τον διακομιστή MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10548,84 +10564,84 @@ msgstr "" "θα πρέπει να δείτε ένα μύνημα που να σας πληροφορεί ότι αυτός ο διακομιστής " "έχει ρυθμιστεί ως πρωτεύων" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Το δευτερεύον νήμα SQL δεν τρέχει!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Το δευτερεύον IO SQL δεν τρέχει!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ο διακομιστής ρυθμίστηκε ως δευτερεύων σε μια διαδικασία αναπαραγωγής. " "Θέλετε να:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Συγχρονισμός βάσεων δεδομένων με την πρωτεύουσα" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Έλεγχος δευτερεύοντος:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Πλήρης εκκίνηση" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Πλήρες σταμάτημα" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Επαναφορά δευτερεύοντος" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Εκκίνηση μόνο Νήματος SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Σταμάτημα μόνο Νήματος SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Εκκίνηση μόνο Νήματος IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Σταμάτημα μόνο Νήματος IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Διαχείριση σφάλματος:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "δευτερεύοντος!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Παράβλεψη τρέχοντος σφάλματος" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Παράβλεψη επόμενου" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "σφάλματα." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10634,12 +10650,12 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10647,119 +10663,119 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Χειριστής" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Λανθάνουσα μνήμη ερωτήματος" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Διεργασίες" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Προσωρινά δεδομένα" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Καθυστερημένες εισαγωγές" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Λανθάνουσα μνήμη κλειδιού" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Ενώσεις" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Ταξινόμηση" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Συντονιστής κινήσεων" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Εμφάνιση κατάστασης δευτερεύοντος" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Όλες οι μεταβλητές κατάστασης" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Εποπτεία" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Σύμβουλος" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Αριθμός σημείων δεδομένων: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Ρυθμός ανανέωσης: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Φίλτρα" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Να περιλαμβάνει τη λέξη:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Φιλτράρισμα ανά κατηγορία..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Εμφάνιση μη διαμορφομένων τιμών" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Αναλυτής εκτέλεσης" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Οδηγίες" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10767,7 +10783,7 @@ msgstr "" "Το σύστημα Συμβούλου μπορεί να παρέχει προτάσεις για μεταβλητές διακομιστή " "αναλύοντας τις μεταβλητές κατάστασης διακομιστή." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10776,7 +10792,7 @@ msgstr "" "Σημειώστε ότι αυτό το σύστημα παρέχει προτάσεις βάσει σε απλούς υπολογισμούς " "και βασικούς κανόνες που μπορεί να μην εφαρμόζονται στο σύστημά σας." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10786,7 +10802,7 @@ msgstr "" "τεημνρίωση) και πως να αναιρέσετε την αλλαγή. Εσφαλμένη ρύθμιση ίσως έχει " "σοβαρή επίδραση στην απόδοση." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10797,31 +10813,31 @@ msgstr "" "αν δεν υπήρχε ουσιαστική βελτίωση." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Ερωτήσεις από την εκκίνηση: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Δηλώσεις" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Αυτός ο διακομιστής MySQL λειτουργεί για %1$s. Ξεκίνησε στις %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10829,19 +10845,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10849,11 +10865,11 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10862,35 +10878,35 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "Κωδικός" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Εντολή" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10898,12 +10914,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10913,20 +10929,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10938,11 +10954,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10950,7 +10966,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10958,7 +10974,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10967,23 +10983,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10994,7 +11010,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11005,7 +11021,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11014,7 +11030,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11024,7 +11040,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11033,7 +11049,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11046,7 +11062,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11058,37 +11074,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11098,7 +11114,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11110,11 +11126,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11123,7 +11139,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11131,11 +11147,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11143,7 +11159,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11158,55 +11174,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11214,36 +11230,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11252,55 +11268,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11309,7 +11325,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11318,7 +11334,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11328,17 +11344,17 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" "Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11349,7 +11365,7 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11357,22 +11373,22 @@ msgstr "" "Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " "σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11383,7 +11399,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11391,12 +11407,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11404,21 +11420,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11428,19 +11444,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11454,7 +11470,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11462,19 +11478,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11482,13 +11498,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11497,7 +11513,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11505,17 +11521,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11523,13 +11539,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11537,14 +11553,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11554,23 +11570,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11582,7 +11598,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11592,11 +11608,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11608,47 +11624,47 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Έναρξη Εποπτείας" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Οδηγίες/Εγκατάσταση" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Προσθήκη διαγράμματος" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Στήλες διαγράμματος" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Διευθέτηση διαγράμματος" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11656,15 +11672,15 @@ msgstr "" "Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " "φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Επαναφορά προεπιλογής" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Οδηγίες Εποπτείας" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11674,12 +11690,12 @@ msgid "" msgstr "" "Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " "του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " -"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " -"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " +"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει το " +"slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " "παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " "15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11692,11 +11708,11 @@ msgstr "" "MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " "χαρακτηριστικά διαγραμμάτων του διακομιστή." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Χρήση της εποπτείας:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11707,7 +11723,7 @@ msgstr "" "ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " "χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11720,11 +11736,11 @@ msgstr "" "επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " "μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Σημειώστε:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11738,88 +11754,88 @@ msgstr "" "απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " "είναι απαραίτητη η εποπτεία." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Προκαθορισμός διαγράμματος" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Μεταβλητή(ές) κατάστασης" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Επιλογή σειρών:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Συχνά εποπτευόμενα" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "ή όνομα τύπου μεταβλητής:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Προβολή ως διαφορική τιμή" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Εφαρμογή διαιρέτη" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Προσθήκη αυτής της σειράς" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Εκκαθάριση σειράς" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Σειρά σε Διάγραμμα:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Στατιστικά καταγραφών" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Επιλεγμένο εύρος χρόνου:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " "ομαδοποιήση" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Αναλυτής ερωτήματος" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d δευτερόλεπτο" msgstr[1] "%d δευτερόλεπτο" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11942,19 +11958,19 @@ msgstr "" "Η βάση δεδομένων προορισμού θα συγχρονιστεί πλήρως με τη βάση δεδομένων " "προέλευσης. Η βάση δεδομένων προέλευσης θα παραμείνει ως έχει." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Ο ορισμός της μεταβλητής απέτυχε" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Ρυθμίσεις και μεταβλητές του διακομιστή" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Τιμή συνεδρίας" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Προεπιλεγμένη τιμή" @@ -12204,8 +12220,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" -"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" +"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:306 #, php-format @@ -12302,42 +12318,42 @@ msgstr "" msgid "Wrong data" msgstr "Εσφαλμένα δεδομένα" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Δημιουργήθηκε από" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Ετικέτα" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." @@ -12468,18 +12484,18 @@ msgstr "Εεπεξεργασία ευρετηρίου" msgid "Index name:" msgstr "Όνομα ευρετηρίου:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(«PRIMARY» πρέπει να είναι το όνομα του πρωτεύοντος κλειδιού και " "μόνο αυτού!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Τύπος ευρετηρίου:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)" @@ -12645,38 +12661,38 @@ msgstr "Εξαγωγή ως %s" msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Απενεργοποιήση παρακολούθησης για το %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Ενεργοποίηση παρακολούθησης για το %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Δημιουργία έκδοσης %1$s του %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Δημιουργία έκδοσης" @@ -12989,8 +13005,8 @@ msgid "" msgstr "" "Η λανθάνουσα μνήμη ερωτήματος είναι γνωστό ότι βελτιώνει σημαντικά την " "απόδοση, αν ρυθμιστεί σωστά. Ενεργοποιήστε τη ορίζοντας το " -"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε " -"«ΟΝ». Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." +"{query_cache_size} με μια διψήφια τιμής ΜΒ και το {query_cache_type} σε «ΟΝ». " +"Σημείωση: Αν χρησιμοποιείτε memcached, αγνοήστε την πρόταση." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -13071,8 +13087,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Η τρέχουσα αναλογία της ελεύθερης λανθάνουσας μνήμης ερωτήματος προς τη " "συνολική λανθάνουσα μνήμη ερωτήματος είναι %s%%. Πρέπει να είναι περισσότερο " @@ -13149,8 +13165,8 @@ msgid "" "value is, the better (This rules firing limit: 0.1%%)" msgstr "" "Ο βαθμός απομακρυσμένων ερωτημάτων προς τα εισερχόμενα ερωτήματα είναι %s%%. " -"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: " -"0,1%%)" +"Όσο χαμηλότερη αυτή η τιμή, τόσο το καλύτερο (Το όριο συναγερμού είναι: 0,1%" +"%)" #: libraries/advisory_rules.txt:188 msgid "Query cache max size" @@ -13234,8 +13250,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Το %s%% όλων των ταξινομήσεων προκαλεί προσωρινούς πίνακες, αυτή η τιμή " "πρέπει να είναι κάτω από 10%%." @@ -13803,8 +13819,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από " -"1%%" +"%s%% όλων των συνδέσεων ματαιώνονται. Αυτή η τιμή πρέπει να είναι κάτω από 1%" +"%" #: libraries/advisory_rules.txt:399 msgid "Rate of aborted connections" @@ -14193,8 +14209,8 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων " -#~ "%s;" +#~ "Θέλετε να απενεργοποιήσετε όλες τις αναφορές BLOB για τη βάση δεδομένων %" +#~ "s;" #~ msgid "Unknown error while uploading." #~ msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου." diff --git a/po/en_GB.po b/po/en_GB.po index 656e5f7ebe..bae627d4c6 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-02 11:22+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: Weblate 1.1\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Page number:" @@ -41,36 +41,36 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Search" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Search" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Go" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Description" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Use this value" @@ -121,18 +121,18 @@ msgstr "Database %1$s has been created." msgid "Database comment: " msgstr "Database comment: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Table comments" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Column" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Column" msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Null" msgid "Default" msgstr "Default" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Default" msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Links to" msgid "Comments" msgstr "Comments" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Comments" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Yes" @@ -276,33 +276,33 @@ msgid "View dump (schema) of database" msgstr "View dump (schema) of database" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Select All" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Database %1$s has been renamed to %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Database %1$s has been copied to %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Table" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rows" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Size" @@ -346,7 +346,7 @@ msgstr "in use" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creation" @@ -354,7 +354,7 @@ msgstr "Creation" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Last update" @@ -362,7 +362,7 @@ msgstr "Last update" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Last check" @@ -377,7 +377,7 @@ msgstr[1] "%s tables" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Switch to %svisual builder%s" @@ -409,9 +409,9 @@ msgstr "Tracked tables" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -429,66 +429,66 @@ msgstr "Updated" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Action" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Show" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Delete tracking data for this table" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Drop" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "active" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "not active" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versions" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Tracking report" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Structure snapshot" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Track table" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Database Log" @@ -504,12 +504,12 @@ msgstr "Selected export type has to be saved in file!" msgid "Bad parameters!" msgstr "Bad parameters!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." @@ -530,117 +530,124 @@ msgstr "Dump has been saved to file %s." msgid "Invalid export type" msgstr "Invalid export type" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Value for the column \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps as Base Layer" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometry" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Point" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Add a point" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Outer Ring" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Inner Ring" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Add a linestring" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Add an inner ring" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Add a polygon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Add geometry" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Output" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "File could not be read" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,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:400 +#: import.php:404 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 " @@ -659,27 +666,27 @@ 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Cannot convert file's character set without character set conversion library" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:513 +#: import.php:517 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." @@ -695,9 +702,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Your SQL query has been executed successfully" @@ -711,7 +718,7 @@ msgstr "Back" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." @@ -720,7 +727,7 @@ msgstr "\"DROP DATABASE\" statements are disabled." msgid "Do you really want to execute \"%s\"?" msgstr "Do you really want to execute \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -760,7 +767,7 @@ msgstr "Add Index" msgid "Edit Index" msgstr "Edit Index" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Add %d column(s) to index" @@ -810,24 +817,24 @@ msgstr "Close" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edit" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Live traffic chart" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Live conn./process chart" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Live query chart" @@ -837,24 +844,24 @@ msgstr "Static data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Other" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -874,7 +881,7 @@ msgstr "Server traffic (in KiB)" msgid "Connections since last refresh" msgstr "Connections since last refresh" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processes" @@ -892,7 +899,7 @@ msgstr "Questions since last refresh" msgid "Questions (executed statements by the server)" msgstr "Questions (executed statements by the server)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Query statistics" @@ -938,13 +945,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -996,32 +1003,32 @@ msgstr "Bytes sent" msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Connections" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1035,11 +1042,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Settings" @@ -1060,12 +1067,12 @@ msgid "Please add at least one variable to the series" msgstr "Please add at least one variable to the series" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "None" @@ -1165,7 +1172,7 @@ msgstr "Change settings" msgid "Current settings" msgstr "Current settings" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Chart Title" @@ -1251,7 +1258,7 @@ msgstr "Explain output" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Time" @@ -1346,8 +1353,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1559,12 +1566,12 @@ msgstr "Query execution time" msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Save" @@ -1620,8 +1627,8 @@ msgstr "Query results" msgid "Data point content" msgstr "Data point content" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignore" @@ -1727,7 +1734,7 @@ msgstr "Show data row(s)" msgid "Generate password" msgstr "Generate password" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generate" @@ -1826,63 +1833,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dec" @@ -1920,32 +1927,32 @@ msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sat" @@ -2059,16 +2066,16 @@ msgstr "Unexpected characters on line %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per hour" @@ -2085,7 +2092,7 @@ msgstr "Max: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentation" @@ -2108,14 +2115,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Error" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL query" @@ -2133,210 +2140,210 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Submit Query" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Refresh" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sun" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Missing parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Previous" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Next" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insert" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Browse" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operations" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Empty" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Execute" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Print" @@ -2354,149 +2361,149 @@ msgstr "" msgid "Font size" msgstr "Font size" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascending" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descending" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sort" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Add/Delete criteria rows" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Add/Delete columns" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Update Query" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Use Tables" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Or" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "And" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modify" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "at least one of the words" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "all words" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "the exact phrase" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "as regular expression" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s match" msgstr[1] "Total: %s matches" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s match in %2$s" msgstr[1] "%1$s matches in %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Delete" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Search in database" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Words or values to search for (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Find:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Inside tables:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Inside column:" @@ -2541,8 +2548,8 @@ msgstr "Headers every %s rows" msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2619,7 +2626,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Kill" @@ -2638,11 +2645,11 @@ msgstr "in query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2652,7 +2659,7 @@ msgstr "Showing rows" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" @@ -2663,7 +2670,7 @@ msgstr "Query took %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "With selected:" @@ -2673,8 +2680,8 @@ msgstr "With selected:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Check All" @@ -2712,16 +2719,16 @@ msgstr "Link not found" msgid "Too many error messages, some are not displayed." msgstr "Too many error messages, some are not displayed." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "File was not an uploaded file." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2729,27 +2736,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2757,11 +2764,11 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Cannot read (moved) upload file." @@ -2770,66 +2777,66 @@ msgstr "Cannot read (moved) upload file." msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript must be enabled past this point" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "No index defined!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexes" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Collation" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comment" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "The primary key has been dropped" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index %s has been dropped" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2840,12 +2847,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databases" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2913,18 +2920,18 @@ msgstr "Users" msgid "Synchronize" msgstr "Synchronise" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binary log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replication" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variables" @@ -3059,8 +3066,8 @@ msgstr "" "after you refresh this page. Please check if the table structure has been " "changed." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Function" @@ -3070,11 +3077,11 @@ msgstr "Function" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Value" @@ -3082,60 +3089,60 @@ msgstr "Value" msgid "Table Search" msgstr "Table Search" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Edit/Insert" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Select columns (at least one):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Number of rows per page" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Display order:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Use this column to label each point" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maximum rows to plot" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Additional search criteria" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Do a \"query by example\" (wildcard: \"%\") for two different columns" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Browse/Edit the points" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "How to use" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Reset zoom" @@ -3219,20 +3226,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3519,7 +3526,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tables" @@ -3533,12 +3540,12 @@ msgstr "Tables" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3644,7 +3651,7 @@ msgstr "Open" msgid "Closed" msgstr "Closed" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3782,22 +3789,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "This setting is disabled, it will not be applied to your configuration" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Set value: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restore default value" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Allow users to customise this value" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reset" @@ -4087,7 +4094,7 @@ msgstr "Character set of the file" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4196,7 +4203,7 @@ msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME type" @@ -4232,7 +4239,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Enclose table and column names with backquotes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL compatibility mode" @@ -5798,10 +5805,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Requires SQL Validator to be enabled" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6067,7 +6074,7 @@ msgstr "The %s extension is missing. Please check your PHP configuration." msgid "possible deep recursion attack" msgstr "possible deep recursion attack" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6075,46 +6082,54 @@ msgstr "" "The server is not responding (or the local server's socket is not correctly " "configured)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "The server is not responding." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Please check privileges of directory containing database." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Change password" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "No Password" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 compatible" @@ -6244,12 +6259,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6324,7 +6339,7 @@ msgstr "committed on %1$s by %2$s" msgid "authored on %1$s by %2$s" msgstr "authored on %1$s by %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6334,33 +6349,33 @@ msgstr "" "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s of %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Uploading your import file..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sec." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "About %MIN min. %SEC sec. remaining." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "About %SEC sec. remaining." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "The file is being processed, please be patient." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6368,30 +6383,30 @@ msgstr "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importing into the current server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importing into the database \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importing into the table \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "File to Import:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "File may be compressed (%s) or uncompressed." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6477,71 +6492,71 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pages containing data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Read requests" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Write requests" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Write waits in %" @@ -6772,11 +6787,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:135 msgid "Related Links" @@ -6790,126 +6805,126 @@ msgstr "The PrimeBase XT Blog by Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "The following structures have either been created or altered. Here you can:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "View a structure's contents by clicking on its name" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Change any of its settings by clicking the corresponding \"Options\" link" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Edit structure by following the \"Structure\" link" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Go to database: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Edit settings for %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Go to table: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Structure of %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Go to view: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Hide" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this column might not be editable" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -6953,7 +6968,7 @@ msgstr "Add table prefix" msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Do you really want to execute the following query?" @@ -7240,7 +7255,7 @@ msgstr "Table options" msgid "Rename table to" msgstr "Rename table to" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Storage Engine" @@ -7354,11 +7369,11 @@ msgstr "Welcome to %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7432,21 +7447,21 @@ msgstr "Wrong username/password. Access denied." msgid "Can not find signon authentication script:" msgstr "Can not find signon authentication script:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "File %s does not contain any key id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardware authentication failed" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "No valid authentication key plugged" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Authenticating..." @@ -7583,20 +7598,21 @@ msgstr "Display MIME types" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Generation Time" @@ -7851,7 +7867,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Invalid column count in CSV input on line %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Table name" @@ -8098,7 +8114,7 @@ msgstr "Creation of PDFs" msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browser transformation" @@ -8168,7 +8184,7 @@ msgstr "Uncheck All" msgid "Slave configuration" msgstr "Slave configuration" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Change or reconfigure master server" @@ -8181,8 +8197,8 @@ msgstr "" "not, please add the following line into [mysqld] section:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8202,15 +8218,15 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8218,17 +8234,17 @@ msgstr "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Any user" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8237,27 +8253,27 @@ msgstr "Any user" msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8266,7 +8282,7 @@ msgstr "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generate Password" @@ -8325,7 +8341,7 @@ msgstr "Details" msgid "Event name" msgstr "Event name" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Event type" @@ -8669,7 +8685,7 @@ msgstr "No event with name %1$s found in database %2$s" msgid "There are no events to display." msgstr "There are no events to display." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8678,7 +8694,7 @@ msgstr "There are no events to display." msgid "The %s table doesn't exist!" msgstr "The %s table doesn't exist!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8724,91 +8740,91 @@ msgstr "Attributes" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Create a page" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Page name" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatic layout based on" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Internal relations" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Please choose a page to edit" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Select page" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Column names" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Display relational schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Select Export Relational Type" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Show colour" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Display all tables with the same width" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Data Dictionary" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Only show keys" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientation" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Paper size" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8816,7 +8832,7 @@ msgstr "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" @@ -9114,7 +9130,7 @@ msgstr "Users having access to "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "User" @@ -9251,13 +9267,13 @@ msgstr "Users overview" 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." #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9313,11 +9329,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -9412,7 +9428,7 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" @@ -9425,12 +9441,12 @@ msgstr "Tracking is active." msgid "Tracking is not active." msgstr "Tracking is not active." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" @@ -9458,14 +9474,14 @@ msgid "Column %s has been dropped" msgstr "Column %s has been dropped" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primary" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9475,7 +9491,7 @@ msgid "Spatial" msgstr "Spatial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9499,7 +9515,7 @@ msgstr "Relation view" msgid "Propose table structure" msgstr "Propose table structure" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "You have to add at least one column." @@ -9507,7 +9523,7 @@ msgstr "You have to add at least one column." msgid "Add column" msgstr "Add column" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" @@ -9530,15 +9546,15 @@ msgstr "After %s" msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Row Statistics" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "static" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamic" @@ -9546,15 +9562,15 @@ msgstr "dynamic" msgid "partitioned" msgstr "partitioned" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Row length" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Row size" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Next autoindex" @@ -9600,15 +9616,15 @@ msgstr "Add SPATIAL index" msgid "Add FULLTEXT index" msgstr "Add FULLTEXT index" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Information" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Space usage" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effective" @@ -9641,7 +9657,7 @@ msgstr "" msgid "Move column" msgstr "Move column" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9650,11 +9666,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:145 msgid "Transformation options" msgstr "Transformation options" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9666,33 +9682,33 @@ msgstr "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM or SET data too long?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Get more editing space" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "None" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "first" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "after %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION definition" @@ -9896,7 +9912,7 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "No databases" @@ -10173,29 +10189,29 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Files" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Show Full Queries" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Log name" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Position" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Original position" @@ -10203,31 +10219,31 @@ msgstr "Original position" msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database has been dropped successfully." msgstr[1] "%1$d databases have been dropped successfully." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Databases statistics" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master replication" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave replication" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Enable Statistics" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10297,39 +10313,39 @@ msgstr "The privileges were reloaded successfully." msgid "Unknown error" msgstr "Unknown error" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Unable to connect to master %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Unable to change master" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server changed successfully to %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Show master status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Show connected slaves" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10338,11 +10354,11 @@ msgstr "" "This server is not configured as master in a replication process. Would you " "like to configure it?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Master configuration" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10356,19 +10372,19 @@ msgstr "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replicate all databases; Ignore:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignore all databases; Replicate:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Please select databases:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10376,7 +10392,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:260 +#: server_replication.php:287 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 " @@ -10386,81 +10402,81 @@ msgstr "" "should see a message informing you, that this server is configured as " "master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread not running!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread not running!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "See slave status table" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synchronise databases with master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Control slave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Full start" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Full stop" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reset slave" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Start SQL Thread only" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Stop SQL Thread only" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Start IO Thread only" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Stop IO Thread only" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Error management:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Skipping errors might lead into unsynchronised master and slave!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Skip current error" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Skip next" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "errors." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10469,133 +10485,133 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Query cache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Threads" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Key cache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sorting" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "All status variables" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitor" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Advisor" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Number of rows:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Refresh rate: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filters" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Containing the word:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Show only alert values" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filter by category..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Show unformatted values" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Related links:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Run analyser" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instructions" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10603,7 +10619,7 @@ msgstr "" "The Advisor system can provide recommendations on server variables by " "analysing the server status variables." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10613,7 +10629,7 @@ msgstr "" "calculations and by rule of thumb which may not necessarily apply to your " "system." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10623,7 +10639,7 @@ msgstr "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10634,31 +10650,31 @@ msgstr "" "no clearly measurable improvement." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Questions since startup: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "This MySQL server has been running for %1$s. It started up on %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10666,16 +10682,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10683,11 +10699,11 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replication status" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10695,35 +10711,35 @@ msgstr "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Received" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Sent" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Aborted" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Command" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10731,11 +10747,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "The number of failed attempts to connect to the MySQL server." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10745,33 +10761,33 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "The number of transactions that used the temporary binary log cache." +#: server_status.php:1469 +msgid "" +"The number of connection attempts (successful or not) to the MySQL server." +msgstr "" +"The number of connection attempts (successful or not) to the MySQL server." + #: server_status.php:1470 msgid "" -"The number of connection attempts (successful or not) to the MySQL server." +"The number of temporary tables on disk created automatically by the server " +"while executing statements. If Created_tmp_disk_tables is big, you may want " +"to increase the tmp_table_size value to cause temporary tables to be memory-" +"based instead of disk-based." msgstr "" -"The number of connection attempts (successful or not) to the MySQL server." +"The number of temporary tables on disk created automatically by the server " +"while executing statements. If Created_tmp_disk_tables is big, you may want " +"to increase the tmp_table_size value to cause temporary tables to be memory-" +"based instead of disk-based." #: server_status.php:1471 -msgid "" -"The number of temporary tables on disk created automatically by the server " -"while executing statements. If Created_tmp_disk_tables is big, you may want " -"to increase the tmp_table_size value to cause temporary tables to be memory-" -"based instead of disk-based." -msgstr "" -"The number of temporary tables on disk created automatically by the server " -"while executing statements. If Created_tmp_disk_tables is big, you may want " -"to increase the tmp_table_size value to cause temporary tables to be memory-" -"based instead of disk-based." - -#: server_status.php:1472 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10779,39 +10795,39 @@ msgstr "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." +#: server_status.php:1473 +msgid "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + #: server_status.php:1474 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of INSERT DELAYED handler threads in use. Every different table " +"on which one uses INSERT DELAYED gets its own thread." #: server_status.php:1475 -msgid "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." -msgstr "" -"The number of INSERT DELAYED handler threads in use. Every different table " -"on which one uses INSERT DELAYED gets its own thread." - -#: server_status.php:1476 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "The number of times a row was deleted from a table." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10821,208 +10837,208 @@ msgstr "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." +#: server_status.php:1480 +msgid "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." +msgstr "" +"The number of times the first entry was read from an index. If this is high, " +"it suggests that the server is doing a lot of full index scans; for example, " +"SELECT col1 FROM foo, assuming that col1 is indexed." + #: server_status.php:1481 msgid "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." msgstr "" -"The number of times the first entry was read from an index. If this is high, " -"it suggests that the server is doing a lot of full index scans; for example, " -"SELECT col1 FROM foo, assuming that col1 is indexed." +"The number of requests to read a row based on a key. If this is high, it is " +"a good indication that your queries and tables are properly indexed." #: server_status.php:1482 msgid "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." msgstr "" -"The number of requests to read a row based on a key. If this is high, it is " -"a good indication that your queries and tables are properly indexed." +"The number of requests to read the next row in key order. This is " +"incremented if you are querying an index column with a range constraint or " +"if you are doing an index scan." #: server_status.php:1483 msgid "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." -msgstr "" -"The number of requests to read the next row in key order. This is " -"incremented if you are querying an index column with a range constraint or " -"if you are doing an index scan." - -#: server_status.php:1484 -msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimise ORDER BY ... DESC." +#: server_status.php:1484 +msgid "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." +msgstr "" +"The number of requests to read a row based on a fixed position. This is high " +"if you are doing a lot of queries that require sorting of the result. You " +"probably have a lot of queries that require MySQL to scan whole tables or " +"you have joins that don't use keys properly." + #: server_status.php:1485 msgid "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." msgstr "" -"The number of requests to read a row based on a fixed position. This is high " -"if you are doing a lot of queries that require sorting of the result. You " -"probably have a lot of queries that require MySQL to scan whole tables or " -"you have joins that don't use keys properly." +"The number of requests to read the next row in the data file. This is high " +"if you are doing a lot of table scans. Generally this suggests that your " +"tables are not properly indexed or that your queries are not written to take " +"advantage of the indexes you have." #: server_status.php:1486 -msgid "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." -msgstr "" -"The number of requests to read the next row in the data file. This is high " -"if you are doing a lot of table scans. Generally this suggests that your " -"tables are not properly indexed or that your queries are not written to take " -"advantage of the indexes you have." - -#: server_status.php:1487 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "The number of requests to update a row in a table." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "The number of requests to insert a row in a table." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "The number of buffer pool pages that have been requested to be flushed." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "The number of free pages." +#: server_status.php:1493 +msgid "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." +msgstr "" +"The number of latched pages in InnoDB buffer pool. These are pages currently " +"being read or written or that can't be flushed or removed for some other " +"reason." + #: server_status.php:1494 msgid "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." +"The number of pages busy because they have been allocated for administrative " +"overhead such as row locks or the adaptive hash index. This value can also " +"be calculated as Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -"The number of latched pages in InnoDB buffer pool. These are pages currently " -"being read or written or that can't be flushed or removed for some other " -"reason." +"The number of pages busy because they have been allocated for administrative " +"overhead such as row locks or the adaptive hash index. This value can also " +"be calculated as Innodb_buffer_pool_pages_total - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." #: server_status.php:1495 -msgid "" -"The number of pages busy because they have been allocated for administrative " -"overhead such as row locks or the adaptive hash index. This value can also " -"be calculated as Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -msgstr "" -"The number of pages busy because they have been allocated for administrative " -"overhead such as row locks or the adaptive hash index. This value can also " -"be calculated as Innodb_buffer_pool_pages_total - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: server_status.php:1496 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." +#: server_status.php:1496 +msgid "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." +msgstr "" +"The number of \"random\" read-aheads InnoDB initiated. This happens when a " +"query is to scan a large portion of a table but in random order." + #: server_status.php:1497 msgid "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." msgstr "" -"The number of \"random\" read-aheads InnoDB initiated. This happens when a " -"query is to scan a large portion of a table but in random order." +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." #: server_status.php:1498 -msgid "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." -msgstr "" -"The number of sequential read-aheads InnoDB initiated. This happens when " -"InnoDB does a sequential full table scan." - -#: server_status.php:1499 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." +#: server_status.php:1499 +msgid "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." +msgstr "" +"The number of logical reads that InnoDB could not satisfy from buffer pool " +"and had to do a single-page read." + #: server_status.php:1500 msgid "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." msgstr "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." +"Normally, writes to the InnoDB buffer pool happen in the background. " +"However, if it's necessary to read or create a page and no clean pages are " +"available, it's necessary to wait for pages to be flushed first. This " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." #: server_status.php:1501 -msgid "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"Normally, writes to the InnoDB buffer pool happen in the background. " -"However, if it's necessary to read or create a page and no clean pages are " -"available, it's necessary to wait for pages to be flushed first. This " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: server_status.php:1502 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "The number of pages that have been written for doublewrite operations." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11030,35 +11046,35 @@ msgstr "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsync() writes done to the log file." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11066,51 +11082,51 @@ msgstr "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "The average time to acquire a row lock, in milliseconds." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "The total time spent in acquiring row locks, in milliseconds." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "The maximum time to acquire a row lock, in milliseconds." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "The number of times a row lock had to be waited for." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11118,65 +11134,65 @@ msgstr "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." +#: server_status.php:1533 +msgid "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." +msgstr "" +"The number of unused blocks in the key cache. You can use this value to " +"determine how much of the key cache is in use." + #: server_status.php:1534 msgid "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." +"The number of used blocks in the key cache. This value is a high-water mark " +"that indicates the maximum number of blocks that have ever been in use at " +"one time." msgstr "" -"The number of unused blocks in the key cache. You can use this value to " -"determine how much of the key cache is in use." +"The number of used blocks in the key cache. This value is a high-water mark " +"that indicates the maximum number of blocks that have ever been in use at " +"one time." #: server_status.php:1535 -msgid "" -"The number of used blocks in the key cache. This value is a high-water mark " -"that indicates the maximum number of blocks that have ever been in use at " -"one time." -msgstr "" -"The number of used blocks in the key cache. This value is a high-water mark " -"that indicates the maximum number of blocks that have ever been in use at " -"one time." - -#: server_status.php:1536 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage of used key cache (calculated value)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "The number of requests to read a key block from the cache." +#: server_status.php:1537 +msgid "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." +msgstr "" +"The number of physical reads of a key block from disk. If Key_reads is big, " +"then your key_buffer_size value is probably too small. The cache miss rate " +"can be calculated as Key_reads/Key_read_requests." + #: server_status.php:1538 msgid "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" msgstr "" -"The number of physical reads of a key block from disk. If Key_reads is big, " -"then your key_buffer_size value is probably too small. The cache miss rate " -"can be calculated as Key_reads/Key_read_requests." +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" #: server_status.php:1539 -msgid "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" -msgstr "" -"Key cache miss calculated as rate of physical reads compared to read " -"requests (calculated value)" - -#: server_status.php:1540 msgid "The number of requests to write a key block to the cache." msgstr "The number of requests to write a key block to the cache." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "The number of physical writes of a key block to disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage of physical writes compared to write requests (calculated value)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11186,7 +11202,7 @@ msgstr "" "optimiser. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11194,11 +11210,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "The number of rows waiting to be written in INSERT DELAYED queues." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11206,19 +11222,19 @@ msgstr "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "The number of streams that are open (used mainly for logging)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11228,51 +11244,51 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." +#: server_status.php:1553 +msgid "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." +msgstr "" +"The number of queries that have been removed from the cache to free up " +"memory for caching new queries. This information can help you tune the query " +"cache size. The query cache uses a least recently used (LRU) strategy to " +"decide which queries to remove from the cache." + #: server_status.php:1554 msgid "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." msgstr "" -"The number of queries that have been removed from the cache to free up " -"memory for caching new queries. This information can help you tune the query " -"cache size. The query cache uses a least recently used (LRU) strategy to " -"decide which queries to remove from the cache." +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." #: server_status.php:1555 -msgid "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." -msgstr "" -"The number of non-cached queries (not cachable, or not cached due to the " -"query_cache_type setting)." - -#: server_status.php:1556 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11280,35 +11296,35 @@ msgstr "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "The number of joins that used a range search on a reference table." +#: server_status.php:1560 +msgid "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" +msgstr "" +"The number of joins without keys that check for key usage after each row. " +"(If this is not 0, you should carefully check the indexes of your tables.)" + #: server_status.php:1561 msgid "" -"The number of joins without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" msgstr "" -"The number of joins without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" +"The number of joins that used ranges on the first table. (It's normally not " +"critical even if this is big.)" #: server_status.php:1562 -msgid "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" -msgstr "" -"The number of joins that used ranges on the first table. (It's normally not " -"critical even if this is big.)" - -#: server_status.php:1563 msgid "The number of joins that did a full scan of the first table." msgstr "The number of joins that did a full scan of the first table." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "The number of temporary tables currently open by the slave SQL thread." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11316,11 +11332,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "This is ON if this server is a slave that is connected to a master." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11328,39 +11344,39 @@ msgstr "" "The number of threads that have taken more than slow_launch_time seconds to " "create." +#: server_status.php:1567 +msgid "" +"The number of queries that have taken more than long_query_time seconds." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." + #: server_status.php:1568 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of merge passes the sort algorithm has had to do. If this value " +"is large, you should consider increasing the value of the sort_buffer_size " +"system variable." #: server_status.php:1569 -msgid "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." -msgstr "" -"The number of merge passes the sort algorithm has had to do. If this value " -"is large, you should consider increasing the value of the sort_buffer_size " -"system variable." - -#: server_status.php:1570 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "The number of sorts that were done by scanning the table." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "The number of times that a table lock was acquired immediately." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11372,7 +11388,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11382,11 +11398,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11398,47 +11414,47 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Thread cache hit rate (calculated value)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instructions/Setup" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Done rearranging/editing charts" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Add chart" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Rearrange/edit charts" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Chart columns" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Chart arrangement" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11446,15 +11462,15 @@ msgstr "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Reset to default" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Monitor Instructions" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11468,7 +11484,7 @@ msgstr "" "enabled. Note however, that the general_log produces a lot of data and " "increases server load by up to 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11480,11 +11496,11 @@ msgstr "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Using the monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11494,7 +11510,7 @@ msgstr "" "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11506,11 +11522,11 @@ msgstr "" "confirmed, this will load a table of grouped queries, there you may click on " "any occurring SELECT statements to further analyse them." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Please note:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11522,86 +11538,86 @@ msgstr "" "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Preset chart" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Status variable(s)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Select series:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Commonly monitored" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "or type variable name:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Display as differential value" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Apply a divisor" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Append unit to data values" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Add this series" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Clear series" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Series in Chart:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Log statistics" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Selected time range:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remove variable data in INSERT statements for better grouping" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choose from which log you want the statistics to be generated from." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Results are grouped by query text." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Query analyser" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d second" msgstr[1] "%d seconds" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11719,19 +11735,19 @@ msgstr "" "Target database will be completely synchronised with source database. Source " "database will remain unchanged." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Setting variable failed" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Server variables and settings" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Session value" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Global value" @@ -12062,42 +12078,42 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters." msgid "Wrong data" msgstr "Wrong data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL result" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generated by" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "The columns have been moved successfully." @@ -12228,17 +12244,17 @@ msgstr "Edit index" msgid "Index name:" msgstr "Index name:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Index type:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" @@ -12401,38 +12417,38 @@ msgstr "Export as %s" msgid "Show versions" msgstr "Show versions" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Deactivate tracking for %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deactivate now" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Activate tracking for %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Activate now" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Create version %1$s of %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Create version" @@ -12806,11 +12822,11 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -12960,11 +12976,11 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." #: libraries/advisory_rules.txt:211 msgid "Rate of sorts that cause temporary tables" diff --git a/po/es.po b/po/es.po index 9d78225300..19135e5a5b 100644 --- a/po/es.po +++ b/po/es.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-22 15:12+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: Spanish \n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Número de página:" @@ -40,36 +40,36 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Buscar" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Continuar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descripción" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Use este valor" @@ -120,18 +120,18 @@ msgstr "La base de datos %1$s ha sido creada." msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Comentarios de la tabla" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Columna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Nulo" msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Predeterminado" msgid "Links to" msgstr "Enlaces a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Enlaces a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sí" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Ver el volcado (esquema) de la base de datos" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de datos %1$s ha sido renombrada a %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de datos %1$s ha sido copiada a %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " "Para saber por qué haz clic %saquí%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabla" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Filas" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Tamaño" @@ -345,7 +345,7 @@ msgstr "en uso" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creación" @@ -353,7 +353,7 @@ msgstr "Creación" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Última actualización" @@ -361,7 +361,7 @@ msgstr "Última actualización" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Última revisión" @@ -378,7 +378,7 @@ msgstr[1] "%s tablas" msgid "You have to choose at least one column to display" msgstr "Debe elegir al menos una columna para mostrar" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar al %sconstructor visual%s" @@ -410,9 +410,9 @@ msgstr "Tablas con seguimiento" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Base de datos" @@ -430,66 +430,66 @@ msgstr "Actualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Estado actual" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Acción" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostrar" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Borrar los datos de seguimiento para esta tabla" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "activo/a" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "no activo/a" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versiones" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Informe de seguimiento" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Instantánea de la estructura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tablas sin seguimiento" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Hacer seguimiento a la tabla" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Registro de la base de datos" @@ -505,12 +505,12 @@ msgstr "¡El formato de exportación seleccionado debe grabarse en el archivo!" msgid "Bad parameters!" msgstr "¡Parámetros incorrectos!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." @@ -534,117 +534,124 @@ msgstr "El volcado ha sido guardado al archivo %s." msgid "Invalid export type" msgstr "Tipo de exportación inválido" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para la columna \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometría" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Agregar un punto" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Cadena de líneas" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Círculo exterior" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Círculo interior" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Agregar una cadena de líneas" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Agregar un círculo interior" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Agregar un polígono" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Agregar geometría" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Salida" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " -"ubicada debajo en el campo \"Valor\"" +"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada " +"debajo en el campo \"Valor\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a " -"%sla documentation%s para hallar modos de superar esta limitación." +"Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a %" +"sla documentation%s para hallar modos de superar esta limitación." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "No fue posible leer el archivo" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -654,7 +661,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:400 +#: import.php:404 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 " @@ -664,29 +671,29 @@ msgstr "" "el tamaño del archivo excedió el máximo permitido por su configuración PHP. " "Ver [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No se pudo convertir el conjunto de caracteres del archivo sin la biblioteca " "correspondiente" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación. ¡Revise su instalación!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -694,7 +701,7 @@ msgstr "" "Se ha agotado el tiempo de ejecución del script; si desea completar la " "importación reenvíe el mismo archivo y la importación continuará." -#: import.php:513 +#: import.php:517 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." @@ -703,9 +710,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Su consulta se ejecutó con éxito" @@ -719,7 +726,7 @@ msgstr "Volver" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -728,7 +735,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." msgid "Do you really want to execute \"%s\"?" msgstr "¿Realmente desea ejecutar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -768,7 +775,7 @@ msgstr "Agregar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Agregar %d columna(s) al índice" @@ -818,24 +825,24 @@ msgstr "Cerrar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Gráfico de tráfico en vivo" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Gráfico de procesos/conexiones en vivo" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Gráfico de consultas en vivo" @@ -845,24 +852,24 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -882,7 +889,7 @@ msgstr "Tráfico del servidor (en KiB)" msgid "Connections since last refresh" msgstr "Connexiones desde la última actualización" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesos" @@ -900,7 +907,7 @@ msgstr "Preguntas desde la última actualización" msgid "Questions (executed statements by the server)" msgstr "Preguntas (sentencias ejecutadas por el servidor)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Estadísticas de Consulta" @@ -946,13 +953,13 @@ msgstr "Intercambio de sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1004,32 +1011,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Conexiones" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1045,12 +1052,12 @@ msgstr "%d tabla(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Configuración" @@ -1071,12 +1078,12 @@ msgid "Please add at least one variable to the series" msgstr "Agregue al menos una variable a la serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ninguna" @@ -1176,7 +1183,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Título del gráfico" @@ -1265,7 +1272,7 @@ msgstr "Explicar salida" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tiempo" @@ -1362,8 +1369,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1576,12 +1583,12 @@ msgstr "Tiempo de ejecución de la consulta" msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Guardar" @@ -1639,8 +1646,8 @@ msgstr "Resultados de la consulta" msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorar" @@ -1752,7 +1759,7 @@ msgstr "Mastrar fila(s) de datos" msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generar" @@ -1851,63 +1858,63 @@ msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dic" @@ -1945,32 +1952,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2087,16 +2094,16 @@ msgstr "" "Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se " "encontró «%2$s»" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "por hora" @@ -2113,7 +2120,7 @@ msgstr "Máximo: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentación" @@ -2136,14 +2143,14 @@ msgid "en" msgstr "es" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Error" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "consulta SQL" @@ -2161,212 +2168,212 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse a un validador de SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Ejecutar la consulta" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Actualizar" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Saltar la validación de SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Edición en linea de esta consulta" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Perfilando" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parámetro faltante:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Comenzar" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Siguiente" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Estructura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insertar" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Examinar" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operaciones" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "No hay archivos para subir" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Vaciar" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Ejecutar" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimir" @@ -2385,98 +2392,98 @@ msgstr "" msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descendente" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordenar" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criterio" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Añadir/borrar filas de criterio" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Añadir/borrar columnas" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Modificar la consulta" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Usar tablas" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "O" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "y luego" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Insertar" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Borrar" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificar" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "al menos una de estas palabras" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "Todas las palabras" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "La frase exacta" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "como expresión regular" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados de la búsqueda para \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2485,51 +2492,51 @@ msgstr[1] "Total: %s resultados" # singular: %s resultado en la tabla %s # plural: %s resultados en la tabla %s -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s coincidencia en la tabla %2$s" msgstr[1] "%1$s coincidencias en la tabla %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Borrar" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Buscar en la base de datos" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras o valores a buscar (comodín: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Encontrado:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Las palabras están separadas por un espacio (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dentro de las tablas:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dentro de la columna:" @@ -2574,8 +2581,8 @@ msgstr "Cabeceras cada %s filas" msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2654,7 +2661,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Matar el proceso" @@ -2673,11 +2680,11 @@ msgstr "en la consulta" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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. Refiérase a la " -"%sdocumentation%s." +"Esta vista tiene al menos este número de filas. Refiérase a la %" +"sdocumentation%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2687,7 +2694,7 @@ msgstr "Mostrando registros" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" @@ -2698,7 +2705,7 @@ msgstr "La consulta tardó %01.4f seg" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Para los elementos que están marcados:" @@ -2708,8 +2715,8 @@ msgstr "Para los elementos que están marcados:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Marcar todos" @@ -2747,17 +2754,17 @@ msgstr "No se encontró el enlace" msgid "Too many error messages, some are not displayed." msgstr "Demasiados mensajes de error, algunos no son mostrados." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "El archivo no era un archivo subido." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo que intentó subir excede la directiva upload_max_filesize en php." "ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2765,27 +2772,27 @@ msgstr "" "El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó subir no alcanzó el 100%." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo a disco." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "La subida del archivo fue detenida por extensión." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2793,11 +2800,11 @@ msgstr "" "Se detectó un error al mover el archivo subido, ver [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "No se puede leer el archivo subido (y movido)." @@ -2806,66 +2813,66 @@ msgstr "No se puede leer el archivo subido (y movido)." msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Las cookies deben estar activadas." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Pasado este punto, debe tener Javascript activado" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "¡No se ha definido ningún índice!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Cotejamiento" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comentario" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "La clave primaria ha sido eliminada" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "El índice %s ha sido eliminado" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2876,12 +2883,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bases de datos" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" @@ -2949,18 +2956,18 @@ msgstr "Usuarios" msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Registro binario" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicación" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variables" @@ -3098,8 +3105,8 @@ msgstr "" "no serán persistentes luego de actualizar esta página. Revise si cambió la " "estructura de la tabla." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Función" @@ -3109,11 +3116,11 @@ msgstr "Función" msgid "Operator" msgstr "Operador" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valor" @@ -3121,63 +3128,63 @@ msgstr "Valor" msgid "Table Search" msgstr "Búsqueda de tablas" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Editar/Insertar" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Seleccionar campos (al menos uno):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" "Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "registros por página" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Mostrar en este orden:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Utilice esta columna para etiquetar cada punto" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Máximo número de filas a graficar" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Criterios de búsqueda adicionales" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas " "distintas" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Navegar/editar los puntos" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Forma de utilización" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Reiniciar ampliación" @@ -3263,16 +3270,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Un número de coma flotante pequeño; los valores posibles son de -3.402823466E" "+38 a -1.175494351E-38, 0 y de 1.175494351E-38 a 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un número de coma flotante de precisión doble; los valores permitidos son de " @@ -3316,8 +3323,8 @@ msgstr "Una fecha, el rango válido es de «%1$s» a «%2$s»" #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" msgstr "" -"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a " -"«%2$s»" +"Una combinación de fecha y marca temporal, el rango válido es de «%1$s» a «%2" +"$s»" #: libraries/Types.class.php:323 msgid "" @@ -3417,8 +3424,8 @@ msgid "" "A BLOB column with a maximum length of 255 (2^8 - 1) bytes, stored with a " "one-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 " -"- 1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " +"Una columna de bloque de texto («BLOB») con una longitud máxima de 255 (2^8 - " +"1) bytes. Cada valor TINYBLOB es almacenado con un prefijo de 1 byte que " "indica la cantidad de bytes en el valor" #: libraries/Types.class.php:347 @@ -3444,9 +3451,9 @@ msgid "" "A BLOB column with a maximum length of 4,294,967,295 or 4GiB (2^32 - 1) " "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" -"Una columna de bloque de texto («BLOB») con una longitud máxima de " -"4294967295 (2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que " -"indica la longitud del valor" +"Una columna de bloque de texto («BLOB») con una longitud máxima de 4294967295 " +"(2^32 - 1) bytes (4GB), almacenado con un prefijo de 4 bytes que indica la " +"longitud del valor" #: libraries/Types.class.php:353 msgid "" @@ -3576,7 +3583,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tablas" @@ -3590,12 +3597,12 @@ msgstr "Tablas" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Residuo a depurar" @@ -3708,7 +3715,7 @@ msgstr "Desplegados" msgid "Closed" msgstr "Ocultos" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3846,22 +3853,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Esta opción está deshabilitada, no se aplicará a su configuración" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Valor establecido: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaurar valor predeterminado" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permitir a los usuarios personalizar este valor" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reiniciar" @@ -4156,7 +4163,7 @@ msgstr "Conjunto de caracteres del archivo" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formato" @@ -4267,7 +4274,7 @@ msgstr "Clave de la etiqueta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4303,7 +4310,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Encerrar nombres de tabla y columna con comillas invertidas" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modo compatible con SQL" @@ -5912,10 +5919,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Requiere que el Validador SQL esté habilitado" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6196,7 +6203,7 @@ msgstr "No se encontró la extensión %s. Revisa la configuración PHP." msgid "possible deep recursion attack" msgstr "posible ataque de recursión extrema" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6204,48 +6211,56 @@ msgstr "" "El servidor no está respondiendo (o el zócalo local al servidor MySQL no " "está configurado correctamente)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "El servidor no está respondiendo." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Revisa los permisos del directorio que contiene la base de datos." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalles..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La conexión para controluser, como está definida en su configuración, " "fracasó." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Cambio de contraseña" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sin contraseña" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Debe volver a escribir" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hashing de la contraseña" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatible con MySQL 4.0" @@ -6375,8 +6390,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -6456,7 +6471,7 @@ msgstr "incorporada el %1$s por %2$s" msgid "authored on %1$s by %2$s" msgstr "creada el %1$s por %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6466,33 +6481,33 @@ msgstr "" "tamaño máximo permitido o este es un fallo conocido en los navegadores " "basados en WebKit (Safari, Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s de %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Subiendo su archivo a importar..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/seg." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Alrededor de %MIN min. %SEC seg. restantes." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Alrededor de %SEC seg. restantes." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "El archivo está siendo procesado, sea paciente." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6500,30 +6515,30 @@ msgstr "" "Sea paciente, el archivo está siendo cargado. Los detalles de la carga no " "están disponibles." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importando al servidor actual" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importando en la base de datos \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importando en la tabla \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Archivo a importar:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "El archivo puede ser comprimido (%s) o descomprimido." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6614,71 +6629,71 @@ msgstr "" "El tamaño del búfer de memoria usado por InnoDB para almacenar, en el cache, " "los datos e índices de sus tablas." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Estado del InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Uso de la reserva de búfers" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Páginas libres" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Páginas que requieren ser depuradas" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Páginas que contienen datos" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Páginas que serán eliminadas" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Páginas activas" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Páginas vinculadas" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Actividad de la reserva de búfers" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Lea las solicitudes" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Escribir las solicitudes" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Leer los fallos" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Escribir las esperas" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Leer los fallos en %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Escribir las esperas en %" @@ -6919,8 +6934,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -6937,128 +6952,128 @@ msgstr "Blog de PrimeBase por Paul McCullagh" msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Puede ver los contenidos de una estructura pulsando en su nombre" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" " "correspondiente" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Edite la estructura siguiendo el enlace \"Estructura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Ir a la base de datos: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Ir a la tabla: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Ir a la vista: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Debido a su longitud,
esta columna podría no ser editable" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7103,7 +7118,7 @@ msgstr "Agregar prefijo a la tabla" msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" @@ -7390,7 +7405,7 @@ msgstr "Opciones de la tabla" msgid "Rename table to" msgstr "Cambiar el nombre de la tabla a" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Motor de almacenamiento" @@ -7504,8 +7519,8 @@ msgstr "Bienvenido a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -7587,21 +7602,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "No se pudo encontrar el script de autenticación «signon»:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "El archivo %s no contiene ningún id de clave" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "La autenticación de hardware fracasó" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "No se ha conectado una clave de autenticación válida" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autenticando..." @@ -7739,20 +7754,21 @@ msgstr "Tipos MIME disponibles" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Tiempo de generación" @@ -8011,7 +8027,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "El número de columnas de los datos CSV en la línea %d no es válido." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nombre de la tabla" @@ -8267,7 +8283,7 @@ msgstr "Creación de los PDF" msgid "Displaying Column Comments" msgstr "Mostrando los comentarios de la columna" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformación del navegador" @@ -8339,7 +8355,7 @@ msgstr "Desmarcar todos" msgid "Slave configuration" msgstr "Configuración de esclavo" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Cambiar o reconfigurar el servidor maestro" @@ -8352,8 +8368,8 @@ msgstr "" "(my.cnf). Si no, agregue la siguiente línea en la sección [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8373,15 +8389,15 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID del servidor" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8389,17 +8405,17 @@ msgstr "" "Sólo los esclavos iniciados con la opción --report-host=host_name son " "visibles en esta lista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Agregar un usuario de replicación esclavo" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Cualquier usuario" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8408,27 +8424,27 @@ msgstr "Cualquier usuario" msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8437,7 +8453,7 @@ msgstr "" "Cuando la tabla Host es usada, este campo es ignorado y se utilizan los " "valores almacenados en la tabla Host en su lugar." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generar la contraseña" @@ -8496,7 +8512,7 @@ msgstr "Detalles" msgid "Event name" msgstr "Nombre del evento" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tipo de evento" @@ -8841,7 +8857,7 @@ msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s" msgid "There are no events to display." msgstr "No existen eventos para mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8850,7 +8866,7 @@ msgstr "No existen eventos para mostrar." msgid "The %s table doesn't exist!" msgstr "¡La tabla %s no existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8896,91 +8912,91 @@ msgstr "Atributos" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Crear una nueva página" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nombre de página" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Diseño automático basado en" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relaciones internas" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "CLAVE FORÁNEA" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Elegir la página a editar" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Seleccionar página" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Seleccionar tablas" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nombre de las columnas" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Seleccionar tipo de exportación relacional" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostrar la cuadrícula" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostrar color" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostrar la dimensión de las tablas" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostrar todas las tablas que tienen el mismo ancho" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Diccionario de datos" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Mostrar las llaves solamente" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Orientación horizontal" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Orientación vertical" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientación" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Tamaño del papel" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8988,7 +9004,7 @@ msgstr "" "La página actual tiene referencias a tablas que ya no existen. ¿Desea " "eliminar esas referencias?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "cambiar el estado del scratchboard" @@ -9300,7 +9316,7 @@ msgstr "Usuarios con acceso a "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Usuario" @@ -9441,8 +9457,8 @@ msgstr "Vista global de 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 obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " @@ -9504,11 +9520,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -9606,7 +9622,7 @@ msgstr "" "El validador de SQL no pudo inicializarse. Revise si ha instalado las " "extensiones PHP necesarias, como indica la %sdocumentación%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" @@ -9619,12 +9635,12 @@ msgstr "El seguimiento está activo." msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" @@ -9652,14 +9668,14 @@ msgid "Column %s has been dropped" msgstr "Se ha eliminado la columna %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaria" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Índice" @@ -9669,7 +9685,7 @@ msgid "Spatial" msgstr "Espacial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Texto completo" @@ -9693,7 +9709,7 @@ msgstr "Vista de relaciones" msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." @@ -9701,7 +9717,7 @@ msgstr "Debe agregar al menos una columna." msgid "Add column" msgstr "Añadir columna" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Agregar %s columna(s)" @@ -9724,15 +9740,15 @@ msgstr "Después de %s" msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columna(s)" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "estático" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinámico/a" @@ -9740,15 +9756,15 @@ msgstr "dinámico/a" msgid "partitioned" msgstr "particionado" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Longitud de la fila" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Tamaño de la fila" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Índice automático siguiente" @@ -9794,15 +9810,15 @@ msgstr "Agregar índice espacial («SPATIAL»)" msgid "Add FULLTEXT index" msgstr "Agregar índice FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Información" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Espacio utilizado" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efectivo/a" @@ -9835,7 +9851,7 @@ msgstr "" msgid "Move column" msgstr "Mover columna" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9845,11 +9861,11 @@ msgstr "" "transformaciones MIME-type transformations, dé clic en %stransformation " "descriptions%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opciones de transformación" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9861,35 +9877,35 @@ msgstr "" "invertida (\"\\\") o comilla sencilla (\"'\") entre esos valores, añada una " "barra invertida (por ejemplo '\\\\xyz' o 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "¿Datos ENUM o SET demasiado largos?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Obtener más espacio de edición" # Corresponds to NONE option for default value of a TIMESTAMP field -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Ninguno" # Corresponds to user-defined option for default value of a TIMESTAMP field -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Personalizado:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "primera" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "después de %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" @@ -10078,8 +10094,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " -"%sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" +"sPulsa aquí para averiguar por qué%s." #: main.php:468 #, php-format @@ -10099,7 +10115,7 @@ msgstr "" "El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por " "posibles inconvenientes." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "No hay bases de datos" @@ -10383,30 +10399,30 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Archivos" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" # It is about binary logs, not about login names -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nombre del registro" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posición" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posición original" @@ -10414,31 +10430,31 @@ msgstr "Posición original" msgid "Character Sets and Collations" msgstr "Conjunto de caracteres y sus cotejamientos" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de datos han sido eliminadas exitosamente." msgstr[1] "%1$d bases de datos han sido eliminadas exitosamente." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Estadísticas de la base" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replicación maestra" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replicación esclava" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activar las estadísticas" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10508,41 +10524,41 @@ msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." msgid "Unknown error" msgstr "Error desconocido" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "No se pudo conectar al maestro %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "No se pudo leer la posición de registro del maestro. Posible problema de " "privilegios en el maestro." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "No se pudo cambiar maestro" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "El servidor maestro fue cambiado exitosamente a %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Mostrar el estado del maestro" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Mostrar esclavos conectados" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10551,11 +10567,11 @@ msgstr "" "Este servidor no está configurado como maestro en un proceso de replicación. " "¿Desea configurarlo?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configuración del maestro" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10569,19 +10585,19 @@ msgstr "" "ignorar todas las bases de datos y sólo permitir que ciertas bases de datos " "sean replicadas. Elija el modo:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas las bases de datos; ignorar:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas las bases de datos; replicar:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Seleccionar bases de datos:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10590,7 +10606,7 @@ msgstr "" "archivo my.cnf y luego reinicie el servidor MySQL." # See translation string 4 -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10600,84 +10616,84 @@ msgstr "" "continuación deberás ver un mensaje informando que el servidor está " "configurado como maestro" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "¡El hilo SQL esclavo no está ejecutando!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "¡El hilo IO escalvo no está ejecutando!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "El servidor está configurado como esclavo en un proceso de replicación. " "Deseas:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Ver la tabla de estado del esclavo" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sincronizar bases de datos con el maestro" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Controlar esclavo:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Inicio completo" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Parada completa" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reiniciar esclavo" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Iniciar hilo SQL sólamente" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Parar hilo SQL sólamente" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Iniciar hilo IO sólamente" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Parar hilo IO sólamente" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Manejo de errores:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "¡Omitir errores podría llevar a que el esclavo y maestro no estén " "sincronizados!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Omitir error actual" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Omitir siguiente" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "errores." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10686,12 +10702,12 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10699,119 +10715,119 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Gestor" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Cache de consultas" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Procesos" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Datos temporales" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Inserciones demoradas («delayed inserts»)" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Caché de claves" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Vínculos (Joins)" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordinador de transacción" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Vaciar el cache de todas las tablas" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Mostrar las tablas que están abiertas" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Mostrar el estado del esclavo" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Vaciar el cache de consultas" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Todas las variables de estado" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitorizar" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Consejero" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Cantidad de datos: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Velocidad de actualización: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtros" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Que contengan la palabra:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Mostrar sólo valores de alerta" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Mostrar valores sin formato" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Enlaces relacionados:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Ejecutar analizador" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instrucciones" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10819,7 +10835,7 @@ msgstr "" "El sistema de consejos puede proveer recomendaciones para las variables del " "servidor analizando las variables de estado del servidor." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10829,7 +10845,7 @@ msgstr "" "cálculos simples y reglas generales que no serán necesariamente válidas en " "su sistema." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10839,7 +10855,7 @@ msgstr "" "cambiando (leyendo la documentación) y cómo revertir el cambio. Ajustes " "incorrectos pueden tener un gran efecto negativo en performance." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10850,31 +10866,31 @@ msgstr "" "una mejora diferenciable." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas desde el inicio: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor MySQL ha estado activo durante %1$s. Se inició en %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10882,19 +10898,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor MySQL trabaja como maestro en un proceso de " "replicación." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor MySQL trabaja como esclavo en un proceso de " "replicación." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10902,11 +10918,11 @@ msgstr "" "Para más información sobre el estado de replicación en el servidor, revise " "la sección sobre replicación." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10915,35 +10931,35 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Recibido" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Enviado" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "Identificación" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Comando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10951,11 +10967,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Cantidad de intentos de conexión al servidor MySQL fallidos." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10965,19 +10981,19 @@ msgstr "" "binarios pero que excedieron el valor del binlog_cache_size y usaron un " "archivo temporal para almacenar las sentencias de la transacción." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "El número de transacciones que usaron el cache temporal de registros " "binarios." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Cantidad de intentos de conexión al servidor MySQL (fallidos o exitosos)." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10990,11 +11006,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11002,7 +11018,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11010,7 +11026,7 @@ msgstr "" "El número de filas escritas con INSERT DELAYED en los cuales ocurrió algún " "error (probablemente una clave duplicada)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11018,23 +11034,23 @@ msgstr "" "El número de procesos gestores INSERT DELAYED en uso. Cada tabla diferente " "en la cual uno usa INSERT DELAYED recibe su propio proceso." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "El número de veces que una fila fue eliminada de una tabla." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11045,7 +11061,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11056,7 +11072,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11065,7 +11081,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11075,7 +11091,7 @@ msgstr "" "clave. Este se incrementa si usted está consultando una columna índice con " "un limitante de rango o si usted está haciendo un escaneo del índice." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11084,7 +11100,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11097,7 +11113,7 @@ msgstr "" "requieren que MySQL escanee tablas enteras o usted debe tener vínculos " "(joins) que no usan las claves de manera apropiada." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11110,37 +11126,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "El número de solicitudes hechas para actualizar una fila en una tabla." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "El número de solicitudes hechas para insertar una fila en una tabla." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "El número de páginas conteniendo datos (sucias o limpias)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "El número de páginas de la reserva de búfers que se ha solicitado sean " "vaciadas." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11150,7 +11166,7 @@ msgstr "" "páginas en fase de lectura o escritura o que no pueden ser vaciadas o " "removidas por alguna otra razón." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11162,11 +11178,11 @@ msgstr "" "también puede ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11175,7 +11191,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11183,11 +11199,11 @@ msgstr "" "El número de read-aheads InnoDB secuenciales iniciadas. Esto sucede cuando " "InnoDB hace un escaneo secuencial de la tabla completa." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "El número de solicitudes de lectura lógica hechas por InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11195,7 +11211,7 @@ msgstr "" "El número de lecturas lógicas que InnoDB no pudo satisfacer la reserva de " "búfers y donde fue necesario hacer lectura de página sencilla." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11210,55 +11226,55 @@ msgstr "" "Si los parámetros del tamaño de la reserva de búfers se fijaron " "apropiadamente, este valor será pequeño." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "El número de escrituras hechas a la reserva de búfers InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "El número de datos leídos hasta el momento, en bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "El número de escrituras doublewrite que se han ejecutado y el número de " "páginas escritas con este propósito." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11266,35 +11282,35 @@ msgstr "" "El número de esperas generadas porque el búfer de registro fue demasiado " "pequeño y hubo que esperar a que fuera vaciado antes de continuar." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "El número de escrituras físicas al archivo de registro." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "El número de escrituras fsync() hechas al archivo de registro." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11303,52 +11319,52 @@ msgstr "" "son contados por páginas; el tamaño de la página permite que pueda " "convertirse fácilmente a bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "El número de row locks que actualmente están en espera." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "El tiempo promedio para adquirir un row lock, en milisegundos." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "El total de tiempo invertido para adquirir los row locks, en milisegundos." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "El tiempo máximo para adquirir un row lock, en milisegundos." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "El número de veces que un row lock tuvo que esperarse." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11357,7 +11373,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11365,7 +11381,7 @@ msgstr "" "El número de bloques sin usar en el caché de claves. Puede usar este valor " "para determinar cuánto del caché de claves está en uso." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11375,15 +11391,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "El número de solicitudes para leer un bloque de clave desde el caché." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11394,7 +11410,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11402,22 +11418,22 @@ msgstr "" "Los fallos en el caché de claves es calculado como la tasa de lecturas " "físicas comparadas con los pedidos de lectura (valor calculado)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "El número de solicitudes para escribir un bloque de claves a la caché." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "El número de escrituras físicas de un bloque de claves al disco." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Porcentaje de escrituras físicas comparadas con pedidos de escritura (valor " "calculado)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11428,7 +11444,7 @@ msgstr "" "planes de consulta para una misma consulta. El valor por omisión de 0 " "significa que ninguna consulta ha sido compilada todavía." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11436,11 +11452,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "El número de filas esperando ser escritas en las colas INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11448,21 +11464,21 @@ msgstr "" "El número de tablas que han sido abiertas. Si el número de tablas abiertas " "es grande, su valor del cache de tabla probablemente es muy pequeño." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "El número de flujos de datos que están abiertos (usado principalmente para " "registros)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11472,19 +11488,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11497,7 +11513,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11505,20 +11521,20 @@ msgstr "" "El número de consultas que no ingresaron al cache (porque no es posible o " "porque el parámetro no está activado en query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "El número total de bloques en el cache de consultas." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "El estado de la replicación a prueba de fallos (aún no ha sido implementada)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11526,13 +11542,13 @@ msgstr "" "El número de vínculos (joins) que no usan índices. Si este valor no es 0, " "deberá revisar los índices de sus tablas cuidadosamente." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "El número de vínculos (joins) que usaron búsqueda por rangos en una tabla de " "referencias." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11541,7 +11557,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11549,19 +11565,19 @@ msgstr "" "El número de vínculos («joins») con rangos en la primera tabla (normalmente " "no es crítico aún cuando sea grande)." -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "El número de vínculos (joins) que hicieron un escaneo completo de la primera " "tabla." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "El número de tablas temporales actualmente abiertas por el proceso SQL " "esclavo." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11569,12 +11585,12 @@ msgstr "" "Número total de veces (desde el arranque) que el proceso SQL esclavo de " "replicación ha reintentado hacer transacciones." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Está ENCENDIDO si este servidor es un esclavo que está conectado a un master." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11582,14 +11598,14 @@ msgstr "" "El número de procesos que han tomado más de los segundos registrados en " "slow_launch_time para crear." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "El número de consultas que han tomado más segundos que los registrados en " "long_query_time." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11599,23 +11615,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "El número de consultas organizar que se ejecutaron con rangos." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "El número de consultas organizar que se hicieron escaneando la tabla." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "El número de veces que un table lock fue adquirido inmediatamente." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11627,7 +11643,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11637,11 +11653,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11653,47 +11669,47 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instrucciones/Configuración" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Se finalizó la reorganización/edición de gráficos" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Agregar gráfico" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Columnas del gráfico" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Ordenación de los gráficos" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11702,15 +11718,15 @@ msgstr "" "navegador. Sería recomendable exportarla si tiene una configuración " "complicada." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Restaurar valor predeterminado" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instrucciones de monitorización" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11721,11 +11737,10 @@ msgstr "" "El Monitorizador de phpMyAdmin puede asistir en la optimización de la " "configuración del servidor y rastrear consultas que toman mucho tiempo. Para " "esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que " -"«general_log» produce mucha información y aumenta la carga en el servidor " -"hasta en un 15%" +"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» " +"produce mucha información y aumenta la carga en el servidor hasta en un 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11738,11 +11753,11 @@ msgstr "" "tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " "utilizar las funcionalidades para graficación del servidor." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Utilizando el monitorizador:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11753,7 +11768,7 @@ msgstr "" "la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " "de rueda dentada en cada gráfico." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11766,11 +11781,11 @@ msgstr "" "una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " "SELECT para analizarla." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Notar que:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11783,86 +11798,86 @@ msgstr "" "más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " "que ya no se necesite monitorizar." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variable(s) de estado" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Seleccionar serie:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Monitorizaciones comunes" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "o ingrese el nombre de variable:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Mostrar como un valor diferencial" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Aplicar una división" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Agregar unidad a los valores" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Agregar esta serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Vaciar serie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Series en el gráfico:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Estadísticas de registros" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Rango de tiempo seleccionado:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Elegir el registro del que desea generar estadísticas." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Los resultados se agruparán por el texto de la consulta." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analizador de consultas" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11981,19 +11996,19 @@ msgstr "" "La base de datos objetivo será completamente sincronizada con la base de " "datos fuente. La base de datos fuente no sufrirá cambios." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Falló la definición de la variable" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variables y parámetros del servidor" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valor de la sesión" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valor global" @@ -12338,43 +12353,43 @@ msgstr "" msgid "Wrong data" msgstr "Datos incorrectos" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generado por" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Las columnas fueron movidas exitosamente." @@ -12505,18 +12520,18 @@ msgstr "Editar índice" msgid "Index name:" msgstr "Nombre del índice :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" debe ser el nombre exclusivamente de una clave " "primaria)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipo de índice :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Añadir al índice  %s columna(s)" @@ -12680,38 +12695,38 @@ msgstr "Exportar como %s" msgid "Show versions" msgstr "Mostrar versiones" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar el seguimiento para %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Desactivar ahora" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Activar el seguimiento para %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Activar ahora" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Hacer un seguimiento de estas sentencias de definición de datos:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Crear versión" @@ -12810,8 +12825,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" -"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen " -"en el registro de consultas lentas" +"Podría aumentar «{long_query_time}» u optimizar las consultas que aparecen en " +"el registro de consultas lentas" #: libraries/advisory_rules.txt:68 #, php-format @@ -12878,8 +12893,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"Active el registro de consultas lenta configurando «log_slow_queries» a " -"'ON'. Esto ayudará a analizar consultas con mala performance." +"Active el registro de consultas lenta configurando «log_slow_queries» a 'ON'. " +"Esto ayudará a analizar consultas con mala performance." #: libraries/advisory_rules.txt:89 msgid "log_slow_queries is set to 'OFF'" @@ -13024,8 +13039,8 @@ msgid "" msgstr "" "Se sabe que el caché de consultas puede mejorar la performance enormemente " "si está correctamente configurado. Actívelo definiendo «query_cache_size» a " -"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. " -"Notar que: si está utilizando memcached ignore esta recomendación." +"un valor en MiB de 2 dígitos y definiendo «query_cache_type» a 'ON'. Notar " +"que: si está utilizando memcached ignore esta recomendación." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -13102,8 +13117,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "La tasa actual de memoria libre del caché de consultas respecto del tamaño " "total es %s%%. Debería ser mayor al 80%%" @@ -13261,8 +13276,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas las ordenaciones causan tablas temporales, este valor debería " "de ser menor a 10%%." @@ -13325,8 +13340,8 @@ msgstr "" #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" -"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor " -"a 1 por hora" +"Promedio de uniones («JOIN») de tablas: %s, este promedio debería ser menor a " +"1 por hora" #: libraries/advisory_rules.txt:233 msgid "Rate of reading first index entry" @@ -13434,8 +13449,7 @@ msgstr "" #: libraries/advisory_rules.txt:260 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" -"Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" +msgstr "Los valores actuales son «tmp_table_size»: %s, «max_heap_table_size»: %s" #: libraries/advisory_rules.txt:262 msgid "Percentage of temp tables on disk" @@ -13459,14 +13473,13 @@ msgid "" "mentioned in the beginning of an Article by the Pythian Group" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre escritas a disco " -"independientemente del valor de estas variables. Para eliminarlas deberá re-" -"escribir las consultas para evitar estas condiciones (en una tabla temporal: " -"la presencia de una columna «BLOB» o «TEXT», o la presencia de una columna " -"mayor a 512 bytes) como se menciona al comienzo del artículo de " -"Pythian Group" +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre escritas a disco independientemente " +"del valor de estas variables. Para eliminarlas deberá re-escribir las " +"consultas para evitar estas condiciones (en una tabla temporal: la presencia " +"de una columna «BLOB» o «TEXT», o la presencia de una columna mayor a 512 " +"bytes) como se menciona al comienzo del artículo de Pythian Group" #: libraries/advisory_rules.txt:267 #, php-format @@ -13491,8 +13504,8 @@ msgid "" "mentioned in the MySQL Documentation" msgstr "" -"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin " -"embargo, algunas tablas temporales son siempre a disco permanentemente " +"Aumentar «max_heap_table_size» y «tmp_table_size» podría ayudar. Sin embargo, " +"algunas tablas temporales son siempre a disco permanentemente " "independientemente del valor de estas variables. Para eliminarlas deberá re-" "escribir las consultas para evitar estas condiciones (en una tabla temporal: " "la presencia de una columna «BLOB» o «TEXT» o la presencia de una columna " @@ -13523,8 +13536,8 @@ msgid "" "Set {key_buffer_size} depending on the size of your MyISAM indexes. 64M is a " "good start." msgstr "" -"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M " -"es un buen comienzo." +"Defina «key_buffer_size» dependiendo del tamaño de los índices MyISAM. 64M es " +"un buen comienzo." #: libraries/advisory_rules.txt:294 msgid "key_buffer_size is 0" @@ -13701,8 +13714,7 @@ msgstr "" #: libraries/advisory_rules.txt:359 msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" -"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a " -"0." +"Active el caché de hilos configurado «thread_cache_size» a un valor mayor a 0." #: libraries/advisory_rules.txt:360 msgid "The thread cache is set to 0" @@ -13789,10 +13801,10 @@ msgid "" "do not close database handlers properly get killed sooner. Make sure the " "code closes database handlers properly." msgstr "" -"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones " -"que no liberan los manejadores de base de datos apropiadamente sean " -"eliminadas más rápido. Asegúrese que su código cierre los manejadores de " -"base de datos apropiadamente." +"Aumente «max_connections» o reduzca «wait_timeout» para que las conexiones que " +"no liberan los manejadores de base de datos apropiadamente sean eliminadas " +"más rápido. Asegúrese que su código cierre los manejadores de base de datos " +"apropiadamente." #: libraries/advisory_rules.txt:390 #, php-format @@ -13863,8 +13875,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% de todos los clientes son abandonados. Este valor debería ser menor a " -"2%%" +"%s%% de todos los clientes son abandonados. Este valor debería ser menor a 2%" +"%" #: libraries/advisory_rules.txt:413 msgid "Rate of aborted clients" @@ -14115,8 +14127,7 @@ msgstr "«concurrent_insert» está definido como 0" #~ "A date and time combination, supported range is \\\"%1$s\\\" to \\\"%2$s\\" #~ "\"" #~ msgstr "" -#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a " -#~ "«%s»" +#~ "Una combinación de fecha y marca temporal, el rango válido es de «%s» a «%s»" #~ msgid "Show help button instead of Documentation text" #~ msgstr "Mostrar botón de ayuda en lugar de texto de documentación" @@ -14199,11 +14210,10 @@ msgstr "«concurrent_insert» está definido como 0" #~ "HH:MM:SS' format, but allows assignment of values to DATETIME columns " #~ "using either strings or numbers." #~ msgstr "" -#~ "Una combinación de fecha y marca temporal. El rango soportado es desde " -#~ "«01-Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los " -#~ "valores DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la " -#~ "asignación de valores a columnas DATETIME utilizando tanto cadenas como " -#~ "números." +#~ "Una combinación de fecha y marca temporal. El rango soportado es desde «01-" +#~ "Ene-1000 00:00:00» hasta «31-Dec-9999 23:59:59». MySQL muestra los valores " +#~ "DATETIME en el formato YYY-MM-DD HH:MM:SS, pero permite la asignación de " +#~ "valores a columnas DATETIME utilizando tanto cadenas como números." #~ msgid "" #~ "A time. The range is '-838:59:59' to '838:59:59'. MySQL displays TIME " @@ -14295,8 +14305,8 @@ msgstr "«concurrent_insert» está definido como 0" #~ "any argument is not a WKB LineString, the return value is NULL." #~ msgstr "" #~ "Construye un valor de cadenas de líneas múltiples WKB («MultiLineString») " -#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un " -#~ "«LineString» WKB, el valor devuelto es NULL." +#~ "de «LineString» WKB provistos. Si cualquier parámetro no es un «LineString» " +#~ "WKB, el valor devuelto es NULL." #~ msgid "" #~ "Constructs a WKB MultiPolygon value from a set of WKB Polygon arguments. " @@ -14519,8 +14529,8 @@ msgstr "«concurrent_insert» está definido como 0" #~ "Documentation and further information about PBMS can be found on %sThe " #~ "PrimeBase Media Streaming home page%s." #~ msgstr "" -#~ "La documentación y más información sobre PBMS puede encontrarse la " -#~ "%spaǵina inicial de The PrimeBase Media Streaming%s." +#~ "La documentación y más información sobre PBMS puede encontrarse la %" +#~ "spaǵina inicial de The PrimeBase Media Streaming%s." #~ msgid "The PrimeBase Media Streaming Blog by Barry Leslie" #~ msgstr "Blog de The PrimeBase Media Streaming por Barry Leslie" diff --git a/po/et.po b/po/et.po index 1d085c55fc..de3bcb3178 100644 --- a/po/et.po +++ b/po/et.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 23:33+0200\n" "Last-Translator: LiivaneLord \n" "Language-Team: estonian \n" -"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Leht:" @@ -40,36 +40,36 @@ msgstr "" "Veebilehitseja sihtakent ei saanud uuendada. Võib-olla sulgesid ülemakna või " "sinu veebilehitseja turvasätted blokeerivad akna värskendamist." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Otsi" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Otsi" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Mine" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Võtme nimi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Kirjeldus" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Kasuta seda väärtust" @@ -120,18 +120,18 @@ msgstr "%1$s andmebaas on loodud." msgid "Database comment: " msgstr "Andmebaasi kommentaar: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Tabeli kommentaarid" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Veerg" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Veerg" msgid "Type" msgstr "Tüüp" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tüüp" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Vaikimisi" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Vaikimisi" msgid "Links to" msgstr "Viitab aadressile" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Viitab aadressile" msgid "Comments" msgstr "Kommentaarid" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Kommentaarid" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ei" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Jah" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Vali kõik" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Ära vali ühtegi" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s andmebaasi uueks nimeks on %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s andmebaas on kopeeritud kohta %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "phpMyAdmini seadistuse salvestus on deaktiveeritud. Põhjuse kohta saad " "lugeda, kui vajutad %ssiia%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Ridu" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Suurus" @@ -345,7 +345,7 @@ msgstr "kasutusel" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Loodud" @@ -353,7 +353,7 @@ msgstr "Loodud" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Viimati uuendatud" @@ -361,7 +361,7 @@ msgstr "Viimati uuendatud" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Viimane kontroll" @@ -376,7 +376,7 @@ msgstr[1] "%s tabelit" msgid "You have to choose at least one column to display" msgstr "Pead valima vähemalt ühe veeru, mida näidata" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mine %sgraafilisele loojale%s" @@ -408,9 +408,9 @@ msgstr "Jälgitud tabelid" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Andmebaas" @@ -428,66 +428,66 @@ msgstr "Uuendatud" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Staatus" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Tegevus" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Näita" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Kustuta selle tabeli jälgimise andmed" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Kustuta" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktiivne" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ei ole aktiivne" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versioonid" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Jälgimise raport" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Jälgimata tabelid" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Jälgi tabelit" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Andmebaasi logi" @@ -503,12 +503,12 @@ msgstr "Valitud eksportimise tüüp tuleb salvestada faili!" msgid "Bad parameters!" msgstr "Halvad parameetrid!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faili salvestamiseks pole piisavalt ruumi." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Veebiserveril pole %s faili salvestamiseks õigusi." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Tõmmis salvestati %s faili." @@ -530,117 +530,124 @@ msgstr "Tõmmis salvestati %s faili." msgid "Invalid export type" msgstr "Vale ekspordi tüüp" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" veeru väärtus" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps as Base Layer" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geomeetria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Lisa punkt" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Rea sõne" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Välimine ring" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Sisemine ring" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Lisa sisemine ring" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Hulktahukas" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Lisa hulktahukas" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Väljund" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Vali \"Function\" veerust \"GeomFromText\" ja kleebi allolev sõne \"Value\" " "väljale" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Selle piirangu kohta " "loe %sdokumentatsioonist%s." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Faili ei saanud lugeda" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,7 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: import.php:400 +#: import.php:404 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 " @@ -659,27 +666,27 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [a@./" "Documentation.html#faq1_16@Documentation]KKK 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Faili märgitabelit ei saa teisendada ilma märgitabeli teisendusteegita" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "%s järjehoidja on loodud" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis saada see fail " "uuesti ja importimine jätkub poolelijäänud kohast." -#: import.php:513 +#: import.php:517 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." @@ -696,9 +703,9 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Sinu SQL päring teostati edukalt" @@ -713,7 +720,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin on parema välimusega raamimisvõimelises veebilehitsejas." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -722,7 +729,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud." msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -762,7 +769,7 @@ msgstr "Lisa indeks" msgid "Edit Index" msgstr "Muuda indeksit" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Lisa indeksisse %d veerg(u)" @@ -812,24 +819,24 @@ msgstr "Sulge" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Muuda" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Elava liikluse diagramm" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Elava ühenduse/protsessi diagramm" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Elava päringu diagramm" @@ -839,24 +846,24 @@ msgstr "Staatilised andmed" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Kokku" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -876,7 +883,7 @@ msgstr "Serveri liiklus (KiB'des)" msgid "Connections since last refresh" msgstr "Ühendusi pärast viimast värskendust" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Protsessid" @@ -894,7 +901,7 @@ msgstr "Päringuid pärast viimast värskendust" msgid "Questions (executed statements by the server)" msgstr "Päringuid (serveri poolt käivitatud käsud)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Päringu statistika" @@ -940,13 +947,13 @@ msgstr "Süsteemisaale" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -998,32 +1005,32 @@ msgstr "Saadetud baidid" msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Ühendused" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1037,11 +1044,11 @@ msgstr "%d tabel(it)" msgid "Questions" msgstr "Päringud" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Sätted" @@ -1062,12 +1069,12 @@ msgid "Please add at least one variable to the series" msgstr "Palun lisa seeriasse vähemalt üks muutuja" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Puudub" @@ -1167,7 +1174,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Diagrammi pealkiri" @@ -1253,7 +1260,7 @@ msgstr "Selgita väljundit" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Aeg" @@ -1348,8 +1355,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" @@ -1560,12 +1567,12 @@ msgstr "Päringu sooritamise aeg" msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Salvesta" @@ -1625,8 +1632,8 @@ msgstr "Päringu tulemused" msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoreeri" @@ -1733,7 +1740,7 @@ msgstr "Näita andmete rida/ridu" msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Genereeri" @@ -1832,63 +1839,63 @@ msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dets" @@ -1926,32 +1933,32 @@ msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Lau" @@ -2064,16 +2071,16 @@ msgstr "Ootamatud sümbolid %s. real" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "sekundis" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minutis" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "tunnis" @@ -2090,7 +2097,7 @@ msgstr "Maksimaalne: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentatsioon" @@ -2113,14 +2120,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Viga" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL päring" @@ -2138,210 +2145,210 @@ msgstr "SQL päring" msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL valideerijaga ühendamine ebaõnnestus!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Selgita SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Jäta SQL selgitus vahele" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Ilma PHP koodita" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Saada päring" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Uuenda" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Jäta SQL'i valideerimine vahele" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideeri SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Selle päringu kiirmuutmine" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Kiirmuutmine" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profileerimine" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Päike" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y kell %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Puudulik parameeter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Algus" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Eelmine" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Järgmine" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Lõpp" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Mine "%s" andmebaasi." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Muuda" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktuur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lisa" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Vaata" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Tegevused" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Valitud üleslaadimise kataloogile ei pääse ligi" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Seal pole faile, mida üles laadida" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Tühjenda" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Teosta" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Prindi" @@ -2360,105 +2367,105 @@ msgstr "" msgid "Font size" msgstr "Fondi kõrgus" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Kasvav" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Kahanev" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sorteeri" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteerium" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Lisa/Kustuta kriteeriumiridu" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Lisa/Kustuta veergusid" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Uuenda päringut" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Kasuta tabeleid" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Või" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "And" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Muuda" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL päring %s andmebaasis:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "vähemalt üks sõna" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "kõik sõnad" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "täpne vaste" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "regulaaravaldisena" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s otsingu tulemused:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Kokku: %s vaste" msgstr[1] "Kokku: %s vastet" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2467,44 +2474,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s vaste %2$s tabelis" msgstr[1] "%1$s vastet %2$s tabelis" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Kustutada %s tabeli vasted?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Kustuta" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Otsi andmebaasist" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Sõnad või väärtused, mida otsida (metamärk: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Leia:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Sõnad on eraldatud tühikuga (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Tabelitest:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Veerust:" @@ -2550,8 +2557,8 @@ msgstr "Päised iga %s rea tagant" msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2628,7 +2635,7 @@ msgid "The row has been deleted" msgstr "Rida on kustutatud" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Sulge" @@ -2647,8 +2654,8 @@ msgstr "päringus" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." @@ -2660,7 +2667,7 @@ msgstr "Näitan ridu" msgid "total" msgstr "kokku" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "päring kestis %01.4f sekundit" @@ -2671,7 +2678,7 @@ msgstr "päring kestis %01.4f sekundit" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Valitutega:" @@ -2681,8 +2688,8 @@ msgstr "Valitutega:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Vali kõik" @@ -2720,42 +2727,42 @@ msgstr "Linki ei leitud" msgid "Too many error messages, some are not displayed." msgstr "Liiga palju veasõnumeid, mõningaid pole näha." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Fail ei olnud üleslaetud fail." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Üleslaetud fail ületab upload_max_filesize väärtust php.ini failis." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Üleslaetud fail ületab MAX_FILE_SIZE väärtust, mis täpsustati HTML vormis." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Üleslaetud fail laeti üles vaid osaliselt." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Ajutine kaust puudub." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Faili salvestamine kettale ebaõnnestus." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Laiend peatas faili üleslaadimise." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Faili üleslaadimises on tundmatu viga." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2763,11 +2770,11 @@ msgstr "" "Üleslaetud faili liigutamisel esines viga, vaata [a@./Documentation." "html#faq1_11@Documentation]KKK 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Üleslaetud faili liigutamisel esines viga." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Ei saa lugeda (liigutatud) üleslaetud faili." @@ -2776,66 +2783,66 @@ msgstr "Ei saa lugeda (liigutatud) üleslaetud faili." msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmini aken" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Küpsised peavad olema lubatud." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript peab olema lubatud" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Indeksit pole määratud!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksid" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Hulk" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Kodeering" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentaar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primaarvõti on kustutatud" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s indeks on kustutatud" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2846,12 +2853,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Andmebaasid" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2919,18 +2926,18 @@ msgstr "Kasutajad" msgid "Synchronize" msgstr "Sünkroniseeri" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binaarne logi" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Paljundamine" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Muutujad" @@ -3063,8 +3070,8 @@ msgstr "" "Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui " "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktsioon" @@ -3074,11 +3081,11 @@ msgstr "Funktsioon" msgid "Operator" msgstr "Operaator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Väärtus" @@ -3086,61 +3093,61 @@ msgstr "Väärtus" msgid "Table Search" msgstr "Tabeli otsing" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Muuda/Lisa" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Vali veerud (vähemalt üks):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisa otsingu tingimusi (\"WHERE\" klausel):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Ridade hulk lehe kohta" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Näitamise järjekord:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Kasuta seda veergu iga punkti nimetamiseks" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Suurim ridade hulk diagrammis" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Täiendav otsingu kriteerium" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Teosta kahe erineva veergu jaoks \"päring näite alusel\" (metamärk: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Teosta \"päring näite alusel\" (metamärk: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Sirvi/Muuda punkte" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Kuidas kasutada" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3226,20 +3233,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3285,9 +3292,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 " -"03:14:07\" UTC, säilitatakse sekundite hulgana alates ajastu algusest " -"(\"1970-01-01 00:00:00\" UTC)" +"Ajatempel, ulatus on \"1970-01-01 00:00:01\" UTC kuni \"2038-01-09 03:14:07" +"\" UTC, säilitatakse sekundite hulgana alates ajastu algusest (\"1970-01-01 " +"00:00:00\" UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3526,7 +3533,7 @@ msgstr "jagatud" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabelid" @@ -3540,12 +3547,12 @@ msgstr "Tabelid" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Andmed" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Ballast" @@ -3651,7 +3658,7 @@ msgstr "Avatud" msgid "Closed" msgstr "Suletud" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3789,22 +3796,22 @@ msgstr "Viki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "See säte on keelatud, seda ei saa rakendada sinu seadistusele" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Sea väärtus: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Taasta vaikimisi väärtus" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Luba kasutajatel seda väärtust muuta" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Lähtesta" @@ -4093,7 +4100,7 @@ msgstr "Faili märgitabel" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formaat" @@ -4202,7 +4209,7 @@ msgstr "Nime võti" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tüüp" @@ -4238,7 +4245,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Aseta tabeli ja veeru nimed alumise ja ülemise jutumärgi vahele" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL ühilduvuse meetod" @@ -5805,10 +5812,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Nõuab, et SQL valideerija oleks lubatud" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6074,53 +6081,61 @@ msgstr "%s laiend on puudu. Palun kontrolli oma PHP seadistust." msgid "possible deep recursion attack" msgstr "võimalik tõsine rünnak" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Server ei vasta (või kohaliku serveri sokkel ei ole õigesti seadistatud)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Server ei vasta." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detailid..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Muuda parooli" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Ilma paroolita" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Tipi uuesti" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Parooli räsimine" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0'ga ühilduv" @@ -6251,8 +6266,8 @@ msgstr ", @TABLE@ saab tabeli nimeks" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud %1$sstrftime%2$s'ga ja seetõttu saad kasutada " "aja vormindamise sõne. Lisaks toimuvad järgnevad muudatused: %3$s. Ülejäänud " @@ -6331,7 +6346,7 @@ msgstr "committed on %1$s by %2$s" msgid "authored on %1$s by %2$s" msgstr "authored on %1$s by %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6341,33 +6356,33 @@ msgstr "" "veebipõhiste veebilehitsejate (Safari, Google Chrome, Arora jne) teadatuntud " "viga." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s / %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Imporditava faili üleslaadimine..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Aega jäänud umbes %MIN min %SEC sek." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Aega jäänud umbes %SEC sek." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Faili töödeldakse, palun oota." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6375,30 +6390,30 @@ msgstr "" "Palun oota, faili laetakse üles. Üleslaadimise kohta detailsem info kahjuks " "puudub." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importimine käesolevasse serverisse" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importimine \"%s\" andmebaasi" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importimine \"%s\" tabelisse" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Imporditav fail:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Fail võib olla tihendatud (%s) või tihendamata." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6481,71 +6496,71 @@ msgid "" msgstr "" "Mälupuhvri maht, mida InnoDB kasutab oma andmete ja indeksite puhverdamiseks." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Puhvertsoon" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB staatus" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Puhvertsooni kasutus" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "lehte" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Vabad lehed" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Räpased lehed" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Lehed andmetega" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Puhastada vajavad lehed" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Hõivatud lehed" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Lukustatud lehed" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Puhvertsooni aktiivsus" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Lugemise taotlused" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Kirjutamise taotlused" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Lugemisvead" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Kirjutamise järjekord" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Lugemisvigade %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Kirjutamise järjekorra %" @@ -6774,8 +6789,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." @@ -6792,125 +6807,125 @@ msgstr "The PrimeBase XT blogi, kirjutajaks Paul McCullagh" msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Järgnevaid struktuure on kas loodud või muudetud. Siin saad:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Vaata struktuuri sisu, klikkides selle nimele" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Muuda mistahes selle sätet, klikkides vastavat \"Valikud\" linki" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Muuda struktuuri, klikkides \"Struktuur\" lingile" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Mine andmebaasi: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Muuda %s sätteid" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Mine tabelisse: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s struktuur" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Mine vaatesse: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Peida" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binaarne" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Oma pikkuse tõttu
ei pruugi see veerg olla muudetav" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binaarne - ära muuda" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "veebiserveri üleslaadimiskataloogi" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale " "liikumiseks kasuta CTRL + nooled" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -6954,7 +6969,7 @@ msgstr "Lisa tabeli eesliide" msgid "Add prefix" msgstr "Lisa eesliide" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" @@ -7241,7 +7256,7 @@ msgstr "Tabeli valikud" msgid "Rename table to" msgstr "Muuda tabeli nimeks" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Varundusmootor" @@ -7355,11 +7370,11 @@ msgstr "Tere tulemast %s'i" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 "" -"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " -"%1$spaigaldaja skripti%2$s." +"Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada %1" +"$spaigaldaja skripti%2$s." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7433,21 +7448,21 @@ msgstr "Vale kasutajanimi/parool. Ligipääs keelatud." msgid "Can not find signon authentication script:" msgstr "Ei leia sisselogimise autentimise skripti:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "%s fail ei sisalda ühegi võtme id'd" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Riistvara autentimine ebaõnnestus" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Ühtegi kehtivat autentimise võtit pole sisestatud" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autentimine..." @@ -7584,20 +7599,21 @@ msgstr "Näita MIME-tüüpe" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Loomise aeg" @@ -7853,7 +7869,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Vale veeru hulk CSV sisendis %d.-ndal real." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabeli nimi" @@ -8108,7 +8124,7 @@ msgstr "PDF-ide koostamine" msgid "Displaying Column Comments" msgstr "Veeru kommentaaride näitamine" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Veebilehitseja transformatsioon" @@ -8177,7 +8193,7 @@ msgstr "Ära vali ühtegi" msgid "Slave configuration" msgstr "Alluva seadistus" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Muuda või seadista ülemserver uuesti" @@ -8190,8 +8206,8 @@ msgstr "" "mitte, siis palun lisa [mysqld] sektsiooni järgnev rida:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8211,15 +8227,15 @@ msgid "Slave status" msgstr "Alluva staatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Muutuja" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Serveri ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8227,17 +8243,17 @@ msgstr "" "Selles nimekirjas näeb ainult neid alluvaid, mis algavad --report-" "host=host_name valikuga." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Lisa alluva paljundamise kasutaja" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Kõik kasutajad" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8246,27 +8262,27 @@ msgstr "Kõik kasutajad" msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Kõik hostid" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Kohalik" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "See host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8275,7 +8291,7 @@ msgstr "" "Kui kasutatakse hosti tabelit, siis seda välja ignoreeritakse ning selle " "asemel kasutatakse hosti tabelis olevaid väärtusi." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Genereeri parool" @@ -8334,7 +8350,7 @@ msgstr "Detailid" msgid "Event name" msgstr "Sündmuse nimi" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Sündmuse tüüp" @@ -8678,7 +8694,7 @@ msgstr "%2$s andmebaasist ei leitud sündmust nimega %1$s" msgid "There are no events to display." msgstr "Pole sündmusi, mida näidata." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8687,7 +8703,7 @@ msgstr "Pole sündmusi, mida näidata." msgid "The %s table doesn't exist!" msgstr "%s tabelit pole olemas!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8733,91 +8749,91 @@ msgstr "Atribuudid" msgid "Extra" msgstr "Lisaks" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Loo leht" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Lehe nimi" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automaatne kujundus põhineb" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Sisesed seosed" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Palun vali leht, mida muuta" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Vali leht" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Vali tabelid" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Veeru nimed" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Näita seoseskeemi" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Vali ekspordi seose tüüp" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Näita ruudustikku" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Näita värvi" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Näita tabelite mõõdet" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Näita kõiki tabeleid ühelaiusena" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Andmesõnastik" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Näita ainult võtmeid" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Horisontaalne" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Vertikaalne" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Paigutus" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Paberi suurus" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8825,7 +8841,7 @@ msgstr "" "Antud lehel on viiteid tabelitele, mida enam ei ole. Kas soovid need viited " "kustutada?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Ava/sulge märkmetahvel" @@ -9125,7 +9141,7 @@ msgstr "Kasutajad, kellel on ligipääs "%s" andmebaasile" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Kasutaja" @@ -9263,8 +9279,8 @@ msgstr "Kasutajate ülevaade" 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 õigused otse MySQL'i õiguste tabelist. " "Tabelite sisu võib erineda sellest, mida server kasutab, kui neid on käsitsi " @@ -9324,11 +9340,11 @@ msgstr "Puhasta" msgid "Columns" msgstr "Veerud" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" @@ -9423,7 +9439,7 @@ msgstr "" "SQL valideerijat ei saanud käivitada. Palun kontrolli, et oled paigaldanud " "vajalikud PHP laiendid nagu on kirjeldatud %sdokumentatsioonis%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s tabel on tühjendatud" @@ -9436,12 +9452,12 @@ msgstr "Jälgimine on aktiveeritud." msgid "Tracking is not active." msgstr "Jälgimist pole aktiveeritud." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s vaade on kustutatud" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s tabel on kustutatud" @@ -9469,14 +9485,14 @@ msgid "Column %s has been dropped" msgstr "%s veerg on kustutatud" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaarne" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9486,7 +9502,7 @@ msgid "Spatial" msgstr "Ruumiline" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Täistekst" @@ -9510,7 +9526,7 @@ msgstr "Seose vaade" msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." @@ -9518,7 +9534,7 @@ msgstr "Pead lisama vähemalt ühe veeru." msgid "Add column" msgstr "Lisa veerg" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Lisa %s veerg(u)" @@ -9541,15 +9557,15 @@ msgstr "Peale %s" msgid "Create an index on  %s columns" msgstr "Loo indeks  %s veergudesse" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Rea statistika" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "staatiline" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dünaamiline" @@ -9557,15 +9573,15 @@ msgstr "dünaamiline" msgid "partitioned" msgstr "partitsioneeritud" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Rea pikkus" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Rea laius" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Järgmine automaatne indeks" @@ -9611,15 +9627,15 @@ msgstr "Lisa SPATIAL indeks" msgid "Add FULLTEXT index" msgstr "Lisa FULLTEXT indeks" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informatsioon" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Ruumi kasutus" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektiivne" @@ -9652,7 +9668,7 @@ msgstr "" msgid "Move column" msgstr "Liiguta veergu" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9661,11 +9677,11 @@ msgstr "" "Saadavalolevate transformatsiooni valikute ja nende MIME-tüüpi " "transformatsioonide nimekirja jaoks vajuta %stransformatsiooni kirjeldusele%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformatsiooni valikud" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9677,33 +9693,33 @@ msgstr "" "lisama kurakaldkriipsu (\"\\\") või jutumärgi (\"'\"), siis lisa selle ette " "kurakaldkriips (nt '\\\\xyz' või 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM või SET andmed on liiga pikad?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Võta rohkem muutmise ruumi" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Puudub" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Nagu määratud:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "esimene" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "peale %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION definitsioon" @@ -9886,8 +9902,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmini seadistuse salvestus ei ole lõplikult seadistatud, mõned " -"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad " -"%ssiia%s." +"laiendatud võimalused on aktiveerimata. Põhjuse saad teada, kui vajutad %" +"ssiia%s." #: main.php:468 #, php-format @@ -9904,10 +9920,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " -"%sdokumentatsioonist%s." +"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %" +"sdokumentatsioonist%s." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Andmebaasid puuduvad" @@ -10184,29 +10200,29 @@ msgstr "Faili pole olemas" msgid "Select binary log to view" msgstr "Vali binaarne logi, mida soovid vaadata" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Faili" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavaid päringuid" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Logi nimi" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Asukoht" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Algne asukoht" @@ -10214,31 +10230,31 @@ msgstr "Algne asukoht" msgid "Character Sets and Collations" msgstr "Märgitabelid ja kodeeringud" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d andmebaas kustutati edukalt." msgstr[1] "%1$d andmebaasi kustutati edukalt." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Andmebaaside statistika" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Ülema paljundamine" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Alluva paljundamine" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Luba statistika" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10308,39 +10324,39 @@ msgstr "Õigused on edukalt uuesti laetud." msgid "Unknown error" msgstr "Tundmatu viga" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Ei saa ühendada ülema %s'ga." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ei saa lugeda ülema logi asukohta. Võimalikud on probleemid ülema õigustega." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Ei saa ülemat muuta" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Ülema serveriks muudeti edukalt %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "See server on paljundamisel seatud ülemaks." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Näita ülema staatust" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Näita ühendatud alluvaid" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10349,11 +10365,11 @@ msgstr "" "See server ei ole paljundamisel seatud ülemaks. Kas soovid seda teha?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Ülema seadistus" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10366,19 +10382,19 @@ msgstr "" "paljundada enamus andmebaase) või ignoreerid vaikimisi kõiki andmebaase ja " "lubad paljundada ainult mõningaid andmebaase. Palun vali meetod:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Paljunda kõiki andmebaase, ignoreeri:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignoreeri kõiki andmebaase, paljunda:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Palun vali andmebaasid:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10386,7 +10402,7 @@ msgstr "" "Nüüd lisa järgnevad read oma my.cnf faili [mysqld] sektsiooni lõppu ja peale " "seda palun taaskäivita MySQL server." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10396,80 +10412,80 @@ msgstr "" "Seejärel peaksid nägema sõnumeid, mis teavitavad sind, et see server on seadistatud ülemaks" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Alluva SQL lõim ei tööta!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Alluva IO lõim ei tööta!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server on seadistatud paljundamisel alluvaks. Kas soovid:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Näita alluva staatuse tabelit" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sünkroniseeri andmebaasid ülemaga" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontrolli alluvat:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Täielik käivitus" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Täielik peatamine" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Taaskäivita alluv" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Käivita ainult SQL lõim" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Peata ainult SQL lõim" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Käivita ainult IO lõim" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Peata ainult IO lõim" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Vea haldus:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Vigade vahelejätmine võib rikkuda sünkroonsust ülema ja alluva vahel!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Jäta käesolev viga vahele" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Jäta vahele järgmine" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "viga." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10478,140 +10494,140 @@ msgstr "" "See server ei ole paljundamisel seadistatud alluvaks. Kas soovid seda teha?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "%s lõim katkestati edukalt." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Töötleja" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Päringute puhver" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Lõimud" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Ajutised andmed" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Viivitatud lisamised" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Võtme puhver" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Liitmised" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sorteerimine" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Ülekande koordineerija" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Tühjenda (sulge) kõik tabelid" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Näita avatud tabeleid" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Näita alluvaid hoste" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Näita alluva staatust" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Tühjenda päringute puhver" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Jooksev informatsioon" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Kõik staatuse muutujad" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Jälgija" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Kontrollsüsteem" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Ridade hulk:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Värskendamissagedus: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtrid" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Sisaldab sõna:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Näita ainult 'alert' väärtusi" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtreeri kategooria alusel..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Näita vormindamata väärtusi" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Seotud lingid:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Käivita analüüsija" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Juhendid" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" "Kontrollsüsteem analüüsib serveri staatuse muutujaid ja annab soovitusi." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10620,7 +10636,7 @@ msgstr "" "Pane tähele, et kuigi see süsteem annab soovitusi lihtsate arvutuste alusel, " "on siiski rusikareegel, et need ei pruugi tingimata su süsteemile rakenduda." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10630,7 +10646,7 @@ msgstr "" "(lugedes dokumentatsiooni) ja kuidas tehtud muudatusi tagasi võtta. Halb " "muudatus võib kaasa tuua jõudluse languse." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10641,31 +10657,31 @@ msgstr "" "saavutatud mingit praktiliselt mõõdetavat arengut." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Päringud alates käivitumisest: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Käsud" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Võrguliiklus alates käivitumisest: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "See MySQL server on töötanud %1$s. See käivitus %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10673,15 +10689,15 @@ msgstr "" "See MySQL server töötab paljundamisel ülemana ja alluvana." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "See MySQL server töötab paljundamisel ülemana." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "See MySQL server töötab paljundamisel alluvana." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10689,11 +10705,11 @@ msgstr "" "Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Paljundamise staatus" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10701,35 +10717,35 @@ msgstr "" "Hõivatud serveris võib baitide lugeja olla ülekoormatud ja seetõttu MySQL " "serveri poolt koostatud statistika ei pruugi õige olla." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Vastu võetud" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Saadetud" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Maks. paralleelühendusi" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Ebaõnnestunud katseid" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Käsk" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10737,11 +10753,11 @@ msgstr "" "Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " "ühendust korralikult sulgemata." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10751,17 +10767,17 @@ msgstr "" "ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " "salvestamiseks ajutist faili." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ühenduste hulk, mis üritas (edukalt või mitte) ühendada MySQL serveriga." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10773,11 +10789,11 @@ msgstr "" "suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " "mälupõhised, mitte kettapõhised." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Mysqld poolt loodud ajutiste failide hulk." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10785,7 +10801,7 @@ msgstr "" "Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " "käskude täitmise ajal." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10793,7 +10809,7 @@ msgstr "" "INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " "(tõenäoliselt korduv võti)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10801,23 +10817,23 @@ msgstr "" "Kasutusel olevate INSERT DELAYED töötleja lõimude hulk. Iga erinev tabel, " "mis kasutab INSERT DELAYED käsku, saab endale isikliku lõimu." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Kirjutatud INSERT DELAYED ridade hulk." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Käivitatud FLUSH käskude hulk." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude hulk." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Tabelist kustutatud ridade hulk." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10827,7 +10843,7 @@ msgstr "" "nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " "korda on tabeleid avastatud." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10837,7 +10853,7 @@ msgstr "" "tähendada seda, et server teeb väga palju täielikke indeksite kontrolle. " "Näiteks SELECT veerg1 FROM tabel viitab, et veerg1 on indekseeritud." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10845,7 +10861,7 @@ msgstr "" "Võtmel põhineva rea lugemise taotluste hulk. Kui see on kõrge, siis on see " "hea näitaja, et sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10854,7 +10870,7 @@ msgstr "" "Võtme järjekorras järgmise rea lugemise taotluste hulk. See on suurem, kui " "pärid kitsendatud indekseeritud veergu või teed indeksi kontrolli." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10862,7 +10878,7 @@ msgstr "" "Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " "meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10874,7 +10890,7 @@ msgstr "" "palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " "liitmisi, mis ei kasuta võtmeid korralikult." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10886,35 +10902,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " "need kasutaksid ära indeksid, mis sul on." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Sisemiste ROLLBACK käskude hulk." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Tabeli rea uuendamise taotluste hulk." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Tabelisse rea lisamise taotluste hulk." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Puhvertsooni lehtede hulk, mida on taotletud tühjendama." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Vabade lehtede hulk." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10924,7 +10940,7 @@ msgstr "" "loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " "ega eemaldada." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10936,11 +10952,11 @@ msgstr "" "valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Puhvertsooni kogumaht lehtedes." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10948,7 +10964,7 @@ msgstr "" "InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " "päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10956,11 +10972,11 @@ msgstr "" "InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " "teeb järjestikulist kogu tabeli kontrolli." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10968,7 +10984,7 @@ msgstr "" "Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " "pidi tegema ühelehelise lugemisena." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10982,51 +10998,51 @@ msgstr "" "palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " "see väärtus peaks olema madal." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Seni tehtud fsync() operatsioonide hulk." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Hetkel järjekorras olevate lugemiste hulk." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Hetkel järjekorras olevate kirjutamiste hulk." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Seni loetud andmete koguhulk baitides." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Andmete lugemiste koguhulk." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Andmete kirjutamiste koguhulk." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Seni kirjutatud andmete koguhulk baitides." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Teostatud topeltkirjutamise operatsioonide hulk." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11034,35 +11050,35 @@ msgstr "" "Ootamiste hulk, mida on põhjustanud väike logi puhver ja mille tõttu on enne " "jätkamist pidanud ootama selle tühjendamist." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Logi kirjutamise taotluste hulk." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Logi failisse füüsiliste kirjutamiste hulk." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Järjekorras olevad logi faili kirjutamised." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Logi faili kirjutatud baitide hulk." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Loodud lehtede hulk." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11070,51 +11086,51 @@ msgstr "" "Sisseehitatud InnoDB lehe maht (vaikimisi 16KB). Siin lehel on loendatud " "mitmeid väärtusi. Lehe maht lubab neid kergesti baitidesse teisendada." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Loetud lehtede hulk." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Kirjutatud lehtede hulk." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Hetkel ootel olevate rea lukustamiste hulk." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise keskmine aeg millisekundites." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Ootama pidanud rea lukustamised kokku." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tabelitest kustutatud ridade hulk." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tabelitesse lisatud ridade hulk." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tabelitest loetud ridade hulk." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tabelites uuendatud ridade hulk." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11122,7 +11138,7 @@ msgstr "" "Võtme puhvris võtmeplokkide hulk, mida on küll muudetud, kuid pole veel " "kettale tühjendatud. Seda kasutatakse kui Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11130,7 +11146,7 @@ msgstr "" "Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " "oleva võtme puhvri mahu tuvastamiseks." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11140,15 +11156,15 @@ msgstr "" "näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " "olnud." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Puhvrist võtmeploki lugemise taotluste hulk." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11158,7 +11174,7 @@ msgstr "" "tõenäoliselt on sinu key_buffer_size väärtus liiga väike. Puhvri puudujääki " "saab arvutada valemiga Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11166,22 +11182,22 @@ msgstr "" "Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " "taotlustega (arvutatud väärtus)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Füüsiliste kirjutamiste ja kirjutamise taotluste võrdlemise protsent " "(arvutatud väärtus)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11191,7 +11207,7 @@ msgstr "" "on kasulik erinevate päringuplaanide kulu võrdlemisel sama päringuga. " "Vaikimisi väärtus 0 tähendab, et ühtegi päringut pole veel koostatud." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11199,12 +11215,12 @@ msgstr "" "Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " "käivitamisest." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "INSERT DELAYED järjekordades kirjutamisvalmis olevate ootel ridade hulk." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11212,19 +11228,19 @@ msgstr "" "Avatud tabelite hulk. Kui see on liiga suur, siis sinu tabeli puhvri väärtus " "on tõenäoliselt liiga väike." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Avatud failide hulk." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Avatud tabelite hulk." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11234,19 +11250,19 @@ msgstr "" "killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " "täitmisega." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Päringu puhvri jaoks vaba mälu hulk." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Puhvri kasutamise hulk." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Puhvrisse lisatud päringute hulk." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11258,7 +11274,7 @@ msgstr "" "puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " "päring puhvrist kustutada." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11266,19 +11282,19 @@ msgstr "" "Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " "query_cache_type sätte tõttu)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Puhvris registreeritud päringute hulk." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Päringu puhvris olevate plokkide koguhulk." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11286,11 +11302,11 @@ msgstr "" "Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " "peaksid hoolikalt kontrollima oma tabelite indekseid." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Viidete tabelis piirkondlikku otsimist kasutanud liitmiste hulk." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11299,7 +11315,7 @@ msgstr "" "rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " "indekseid.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11307,15 +11323,15 @@ msgstr "" "Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " "kriitiline, kui see on suur.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Esimeses tabelis täielikku kontrolli teinud liitmiste hulk." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Alluva SQL lõimu poolt hetkel avatud ajutiste tabelite hulk." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11323,24 +11339,24 @@ msgstr "" "Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " "käivitusest)." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "See on ON, kui see server on alluv, mis on ühendatud ülemaga." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Lõimude hulk, mille loomiseks kulus rohkem, kui slow_launch_time sekundit." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Päringute hulk, milleks kulus rohkem aega, kui long_query_time sekundit." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11350,23 +11366,23 @@ msgstr "" "suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " "vähendamist." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Piirkondlike sorteerimiste hulk." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Sorteeritud ridade hulk." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Koheselt teostatud tabeli lukustamiste hulk." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11378,7 +11394,7 @@ msgstr "" "peaksid kõigepealt optimeerima oma päringuid ja seejärel kas poolita oma " "tabel või tabelid või kasuta paljundamist." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11388,11 +11404,11 @@ msgstr "" "valemiga Threads_created/Connections. Kui see väärtus on punane, siis " "peaksid vähendama oma thread_cache_size väärtust." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Hetkel avatud ühenduste hulk." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11403,47 +11419,47 @@ msgstr "" "peaksid suurendama thread_cache_size väärtust. (Tavaliselt ei anna see " "märkimisväärset jõudluse kasvu, kui sul on hea lõimu kasutus.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Lõimude hulk, mis ei ole jõude." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Alusta jälgimist" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Juhendid/Paigaldus" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Diagrammide korrastamine/muutmine on valmis" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Lisa diagramm" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Korrasta/muuda diagramme" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Uuendamise sagedus" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Diagrammi veerud" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Diagrammi korrastus" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11451,15 +11467,15 @@ msgstr "" "Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " "Kui paigaldamine on keeruline, võid seda eksportida." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Lähtesta vaikimisi väärtustele" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Jälgija juhendid" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11473,7 +11489,7 @@ msgstr "" "general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " "suurendab serveri laadimisaega kuni 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11484,11 +11500,11 @@ msgstr "" "andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " "MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Kasuta jälgijat:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11498,7 +11514,7 @@ msgstr "" "tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " "eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11510,11 +11526,11 @@ msgstr "" "diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " "kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Palun pane tähele:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11526,87 +11542,87 @@ msgstr "" "on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " "tühjenda selle tabel, kui jälgimist pole enam tarvis." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Ettemääratud diagramm" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Staatuse muutuja(d)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Vali seeria:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Tavaliselt jälgitav" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "või tipi muutuja nimi:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Näita eristatava väärtusena" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Kasuta jagajat" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Lisa andmete väärtustele ühikud" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Lisa see seeria" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Puhasta seeria" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Seeriad diagrammis:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Logi statistika" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Valitud ajavahemik:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vali logi, millest statistikat luua." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Tulemused on grupeeritud päringu teksti alusel." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Päringu analüüsija" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekundit" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11724,19 +11740,19 @@ msgstr "" "Sihtandmebaas sünkroniseeritakse täielikult lähteandmebaasiga. " "Lähteandmebaasi ei muudeta." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Muutuja seadmine ebaõnnestus" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Serveri muutujad ja sätted" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Seansi väärtus" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globaalne väärtus" @@ -11980,8 +11996,8 @@ msgid "" "(currently %d)." msgstr "" "Kui %ssisselogimise küpsise kehtivus%s on suurem, kui 1440 sekundit, siis " -"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime" -"%s väärtus on sellest madalam (praegu %d)." +"see võib põhjustada juhuslikku seansi aegumist, kui %ssession.gc_maxlifetime%" +"s väärtus on sellest madalam (praegu %d)." #: setup/lib/index.lib.php:306 #, php-format @@ -12010,8 +12026,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - " -"%shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " +"Kui tunned, et see on vajalik, siis kasuta täiendavaid kaitse sätteid - %" +"shostiga autentimise%s sätteid ja %susaldusväärsete prokside nimekirja%s. " "Siiski ei pruugi IP-põhine kaitse olla usaldusväärne, kui sinu IP kuulub " "ISP'le, kellega on ühendatud koos sinuga tuhandeid kasutajaid." @@ -12069,42 +12085,42 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid." msgid "Wrong data" msgstr "Valed andmed" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Valideeritud SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL tulemus" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Koostanud" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Nimi" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s tabel on edukalt muudetud" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Veerud on edukalt liigutatud." @@ -12235,16 +12251,16 @@ msgstr "Muuda indeksit" msgid "Index name:" msgstr "Indeksi nimi:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" peab olema ainult primaarvõtme nimi!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indeksi tüüp:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisa indeksisse  %s veerg(u)" @@ -12407,38 +12423,38 @@ msgstr "Ekspordi kui %s" msgid "Show versions" msgstr "Näita versioone" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiveeri %s jälgimine" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deaktiveeri kohe" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Aktiveeri %s jälgimine" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiveeri kohe" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Loo versioon %1$s, %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Jälgi nende andmete definitsiooni käske:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Jälgi nende andmete töötluse käske:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Loo versioon" @@ -12816,11 +12832,11 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" -"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s" -"%%. See peaks olema üle 80%%" +"Praegune vaba päringu puhvri mälu võrreldes päringu puhvri kogumahuga on %s%" +"%. See peaks olema üle 80%%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -12969,8 +12985,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% kõikidest sorteerimistest põhjustab ajutisi tabeleid. See väärtus peaks " "jääma alla 10%%." @@ -13547,8 +13563,8 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla " -"2%%" +"%s%% kõikidest klientides on lahti ühendatud. See väärtus peaks olema alla 2%" +"%" #: libraries/advisory_rules.txt:413 msgid "Rate of aborted clients" diff --git a/po/eu.po b/po/eu.po index eb4397c99b..08c9cc996e 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-02 11:20+0200\n" "Last-Translator: aitzol berasategi \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: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Orri zenbakia:" @@ -39,36 +39,36 @@ msgstr "" "edukitzea edo zure nabigatzailearen segurtasun ezarpenak zeharkako lehioen " "eguneratzea blokeatzeko konfiguraturik egotea." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Bilatu" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Bilatu" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Joan" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Giltza-izena" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Deskribapena" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Erabili balio hau" @@ -119,18 +119,18 @@ msgstr "%1$s datu-basea sortua izan da." msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Taularen iruzkinak" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Zutabea" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Zutabea" msgid "Type" msgstr "Mota" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Mota" msgid "Null" msgstr "Nulua" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Nulua" msgid "Default" msgstr "Lehenetsia" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Lehenetsia" msgid "Links to" msgstr "Esteka:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Esteka:" msgid "Comments" msgstr "Iruzkinak" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Iruzkinak" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ez" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Ez" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Bai" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Ikusi datu-basearen iraulketa (eskema)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Dena hautatu" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 #, fuzzy msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Datu-basearen izena hutsik dago!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s datu-basea %s-(e)ra berrizendatua izan da" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s datu-basea %2$s(e)ra kopiatua izan da." -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Taula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Errenkadak" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Tamaina" @@ -346,7 +346,7 @@ msgstr "lanean" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Sortzea" @@ -354,7 +354,7 @@ msgstr "Sortzea" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Azken eguneraketa" @@ -362,7 +362,7 @@ msgstr "Azken eguneraketa" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Azken egiaztapena" @@ -377,7 +377,7 @@ msgstr[1] "%s taulak" msgid "You have to choose at least one column to display" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Aldatu %serakitzaile bisualrera%s" @@ -409,9 +409,9 @@ msgstr "Taulak jarraipenarekin" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Datu-basea" @@ -429,66 +429,66 @@ msgstr "Eguneratua" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Egoera" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Ekintza" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Erakutsi" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ezabatu taula honetako jarraipen datuak" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Ezabatu" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktibo" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ez aktibo" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Bertsioak" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Jarraipen informea" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Egitura kaptura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Jarraipen gabeko taulak" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Taularen jarraipena egin" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Datu-base egunkaria" @@ -504,12 +504,12 @@ msgstr "Aukeratutako esportatze formatuak fitxategian gorde behar da!" msgid "Bad parameters!" msgstr "Parametro okerrak!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -522,7 +522,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." @@ -531,162 +531,165 @@ msgstr "Iraulketa %s fitxategian gorde da." msgid "Invalid export type" msgstr "Esportatze mota baliogabea" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" zutaberako balioa" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Erabili OpenStreetMaps Oinarri geruza moduan" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Puntu" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%d puntua" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Puntua gehitu" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Lerro kateak" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Kanpo eraztuna" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Barne eraztuna" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Lerro kate berria gehitu" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Gehitu barne eraztuna" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Gehitu poligonoa" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Gehitu geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Irteera" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu " -"%sdocumentation%s tamaina mugak aldatzeko." +"Agian fitxategi haundiegia igotzen saiatu zara. Mesedez begiratu %" +"sdocumentation%s tamaina mugak aldatzeko." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Erakutsi laster-marka" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Gordetako kontsulta ezabatu da." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "%s laster-marka sortu da" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Inportatzea zuzen burutu da, %d kontsulta exekutatuta_." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Zure SQL-kontsula arrakastaz burutu da" @@ -702,7 +705,7 @@ msgstr "" "phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile " "batekin." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." @@ -711,7 +714,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." msgid "Do you really want to execute \"%s\"?" msgstr "Benetan nahi al duzu \"%s\" exekutatzea?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Datu-base osoa SUNTSITZERA zoaz!" @@ -755,7 +758,7 @@ msgstr "Indizea" msgid "Edit Index" msgstr "Editatu hurrengo lerroa" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -806,24 +809,24 @@ msgstr "Itxi" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editatu" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Zuzeneko trafikoaren grafika" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL kontsulta" @@ -835,24 +838,24 @@ msgstr "Datu estatikoak" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Beste" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -874,7 +877,7 @@ msgstr "Zerbitzariaren trafikoa (KiBtan)" msgid "Connections since last refresh" msgstr "Konexio azken freskatzetik" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prozesuak" @@ -893,7 +896,7 @@ msgstr "Galdera azken freskatzetik" msgid "Questions (executed statements by the server)" msgstr "Galdera (zerbitzariak exekutatuak)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Kontsulta estatistikak" @@ -939,13 +942,13 @@ msgstr "Sistemaren swap-a" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1003,32 +1006,32 @@ msgstr "" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Konexioak" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Byte" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1045,11 +1048,11 @@ msgstr "%s taula" msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1073,12 +1076,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Batez" @@ -1178,7 +1181,7 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1268,7 +1271,7 @@ msgstr "SQL-a azaldu" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Denbora" @@ -1377,8 +1380,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" @@ -1628,12 +1631,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Gorde" @@ -1699,8 +1702,8 @@ msgstr "SQL emaitza" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ezikusi" @@ -1809,7 +1812,7 @@ msgstr "Errenkadak erakusten" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Egilea:" @@ -1934,27 +1937,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1962,37 +1965,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Abe" @@ -2041,32 +2044,32 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Lar" @@ -2199,16 +2202,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "segunduko" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minutuko" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "orduko" @@ -2225,7 +2228,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentazioa" @@ -2248,14 +2251,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Errorea" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL kontsulta" @@ -2273,83 +2276,83 @@ msgstr "SQL kontsulta" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Kontsulta bidali" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL balidatu" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Iga" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2357,28 +2360,28 @@ msgctxt "First page" msgid "Begin" msgstr "Hasi" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Aurrekoa" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Hurrengoa" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2386,106 +2389,106 @@ msgctxt "Last page" msgid "End" msgstr "Amaiera" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Egitura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Txertatu" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Arakatu" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Eragiketak" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Hutsik" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Inprimatu" @@ -2502,105 +2505,105 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Goranzko" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Beherantz" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordenatu" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Irizpidea" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Gehitu/ezabatu irizpide-errenkada" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Gehitu/ezabatu errenkadak" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Kontsulta eguneratu" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Taulak erabili" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Edo" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Eta" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Txertatu" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Ezabatu" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Aldatu" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "hitz guztiak" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "esaldi zehatza" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "adierazpen erregular moduan" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Bilaketaren emaitzak: \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Guztira: %s emaitza" msgstr[1] "Guztira: %s emaitza" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2609,44 +2612,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s emaitza %s taulan" msgstr[1] "%s emaitzak %s taulan" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s taulako aukeratuak ezabatu" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Ezabatu" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Datu-basean bilatu" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Aurkitu:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Hitzak zuriune karakterrarekin berezituta daude (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Taulen barnean:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Zutabearen barnean:" @@ -2700,8 +2703,8 @@ msgstr "Exekutatu aurretik aukeratutako kontsulta" msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2788,7 +2791,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Hil" @@ -2805,11 +2808,11 @@ msgstr "kontsultan" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" -"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" -"%s erreferentzia egin." +"Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation%" +"s erreferentzia egin." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2819,7 +2822,7 @@ msgstr "Errenkadak erakusten" msgid "total" msgstr "guztira" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" @@ -2830,7 +2833,7 @@ msgstr "Kontsulta exekutatzeko denbora %01.4f seg" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Ikurdunak:" @@ -2840,8 +2843,8 @@ msgstr "Ikurdunak:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Guztiak egiaztatu" @@ -2882,51 +2885,51 @@ msgstr "Esteka aurkitugabea" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2935,69 +2938,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Ez dago indizerik definituta!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indizeak" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Ordenamendua" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Iruzkinak" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Lehen mailako gakoa ezabatu da" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s indizea ezabatu da" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3006,12 +3009,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Datu-baseak" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Zerbitzaria" @@ -3081,19 +3084,19 @@ msgstr "Erabiltzailea" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Binarioa " #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Ihardetsi" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Aldagaiak" @@ -3226,8 +3229,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funtzioak" @@ -3238,11 +3241,11 @@ msgstr "Funtzioak" msgid "Operator" msgstr "Eragiketak" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "balioa" @@ -3252,67 +3255,67 @@ msgstr "balioa" msgid "Table Search" msgstr "Bilatu" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Txertatu" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Eremuak hautatu (bat gutxienez):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Errenkada kopurua orriko" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordena erakutsi:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL kontsulta" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3387,14 +3390,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3645,7 +3648,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Taulak" @@ -3659,12 +3662,12 @@ msgstr "Taulak" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Datuak" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Arazteko hondakina" @@ -3776,7 +3779,7 @@ msgstr "" msgid "Closed" msgstr "Itxi gabeko komatxoak" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3925,22 +3928,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reset egin" @@ -4219,7 +4222,7 @@ msgstr "Fitxategiaren karaktereen kodeketa:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formatoa" @@ -4344,7 +4347,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-mota" @@ -4385,7 +4388,7 @@ msgid "Enclose table and column names with backquotes" msgstr "\"Backquotes\" erabili taula eta eremuen izenekin " #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5890,10 +5893,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6148,52 +6151,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Pasahitza aldatu" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Pasahitzik ez" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Berridatzi" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6347,8 +6358,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6436,71 +6447,71 @@ msgstr "Zerbitzariaren bertsioa" msgid "authored on %1$s by %2$s" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Datu-baserik ez" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Datu-baserik ez" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6580,72 +6591,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Egoera" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "%s taularen cachea hustu egin da" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6836,8 +6847,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6854,126 +6865,126 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binarioa" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Bere luzeragatik,
eremu hau ez da editagarria " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7021,7 +7032,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7314,7 +7325,7 @@ msgstr "Taularen hobespenak" msgid "Rename table to" msgstr "Taula berrizendatu izen honetara" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7438,8 +7449,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7513,21 +7524,21 @@ msgstr "Erabiltzaile-izena/pasahitza okerra. Atzipena ukatuta." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7689,20 +7700,21 @@ msgstr "MIME-mota erabilgarriak" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Zerbitzaria" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Sortzeko denbora" @@ -7944,7 +7956,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8197,7 +8209,7 @@ msgstr "PDF-en sorrera" msgid "Displaying Column Comments" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" @@ -8265,7 +8277,7 @@ msgstr "Desautatu dena" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8276,8 +8288,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8298,32 +8310,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Aldagaia" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Zerbitzaria" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Edozein erabiltzaile" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8332,34 +8344,34 @@ msgstr "Edozein erabiltzaile" msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8423,7 +8435,7 @@ msgstr "" msgid "Event name" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Esportazio mota" @@ -8807,7 +8819,7 @@ msgstr "Ez da taularik aurkitu datu-basean." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8817,7 +8829,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "\"%s\" taula ez da existitzen!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8864,101 +8876,101 @@ msgstr "Atributuak" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Orri berri bat sortu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Diseinu automatikoa" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Barne-erlazioak" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Aukeratu editatzeko orria mesedez" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Taulak hautatu" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Taulak hautatu" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Zutabe izenak" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Erlazio-eskema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Sareta erakutsi" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Kolorea erakutsi" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Taulen dimentsioak erakutsi" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Zabalera berdina duten taula guztiak erakutsi?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Datu-hiztegia" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Bertikal" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Sortzea" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Paperaren tamaina" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8966,7 +8978,7 @@ msgstr "" "Orri honek existitzen ez diren taulekiko erreferentziak dauzka. " "Erreferentziok ezabatu nahi al dituzu?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Aldatu \"scratchboard\"-a" @@ -9282,7 +9294,7 @@ msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Erabiltzailea" @@ -9425,8 +9437,8 @@ msgstr "Erabiltzailearen info orokorra" 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 " @@ -9492,11 +9504,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" @@ -9593,7 +9605,7 @@ msgstr "" "beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " "azaltzen den moduan." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" @@ -9606,12 +9618,12 @@ msgstr "Jarraipena aktibatuta dago." msgid "Tracking is not active." msgstr "Jarraipena ez dago aktibatuta." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s Ikuspegia ezabatua izan da" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" @@ -9642,14 +9654,14 @@ msgid "Column %s has been dropped" msgstr "%s taula ezabatu egin da" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Lehen mailakoa" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indizea" @@ -9659,7 +9671,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Testu osoa" @@ -9687,7 +9699,7 @@ msgstr "Erlazioen ikuspegia" msgid "Propose table structure" msgstr "Taularen egituraren proposamena" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9699,7 +9711,7 @@ msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." msgid "Add column" msgstr "Gehitu %s zutabe" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9724,15 +9736,15 @@ msgstr "%s(a)ren ondoren" msgid "Create an index on  %s columns" msgstr "Indize bat sortu  %s  zutabetan" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamikoa" @@ -9740,15 +9752,15 @@ msgstr "dinamikoa" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Errenkadaren luzera" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Errenkadaren tamaina" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9798,16 +9810,16 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "Saioa hasteko informazioa" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Erabilitako lekua" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Eraginkorra" @@ -9850,7 +9862,7 @@ msgstr "" msgid "Move column" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9859,11 +9871,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:145 msgid "Transformation options" msgstr "Eraldaketen hobespenak" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9875,36 +9887,36 @@ msgstr "" "edo barra arrunta (\"'\") erabili beharko bazenu, beti erabili " "alderantzikaturiko barra (adibidez '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Batez" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Honela definitua:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s(a)ren ondoren" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10109,7 +10121,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Datu-baserik ez" @@ -10421,30 +10433,30 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Eremuak" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10452,7 +10464,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "Karaktere-multzoak eta ordenamenduak" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10460,24 +10472,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datu-base arrakastaz ezabatu dira." msgstr[1] "%s datu-base arrakastaz ezabatu dira." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Datu-baseen estatistikak" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Estatistikak gaitu" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10550,50 +10562,50 @@ msgstr "Pribilegioak arrakastaz berkargatu dira." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10602,123 +10614,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Datu-base bat hautatu mesedez" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Testu osoa" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Egitura soilik" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Egitura soilik" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10726,155 +10738,155 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Kontsulta mota" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Use delayed inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Taulak erakutsi" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 #, fuzzy msgid "Runtime Information" msgstr "Saioa hasteko informazioa" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Errenkada kopurua orriko" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Egilea:" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Pasahitza ez aldatu" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Taulak erakutsi" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Taulak erakutsi" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Erlazioak" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kontsulta mota" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funtzioak" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10882,118 +10894,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Sententziak" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL zerbitzari hau martxan egon da %s. %s abiaratu zelarik." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Jasota" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Bidalita" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komandoa" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11001,78 +11013,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11080,7 +11092,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11088,42 +11100,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11131,33 +11143,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11166,243 +11178,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fitxategiaren karaktereen kodeketa:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11410,99 +11422,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11510,18 +11522,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11529,69 +11541,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Kontsulta mota" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lar" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Gehitu %s zutabe" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11600,7 +11612,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11608,18 +11620,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11627,11 +11639,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11639,89 +11651,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy msgid "Preset chart" msgstr "Taula berrizendatu izen honetara: " -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Taulak hautatu" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Erabiltzaile berria gehitu" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL kontsulta" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Errenkadaren estatistikak" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Taulak hautatu" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kontsulta mota" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11729,7 +11741,7 @@ msgid_plural "%d seconds" msgstr[0] "segunduko" msgstr[1] "segunduko" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11849,19 +11861,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Zerbitzariaren aldagai eta ezarpenak" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Saioaren balioa" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Balio orokorra" @@ -12153,44 +12165,44 @@ msgstr "" msgid "Wrong data" msgstr "Datu-baserik ez" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL emaitza" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Egilea:" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiketa" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12346,18 +12358,18 @@ msgstr "Inprimatzeko ikuspegia" msgid "Index name:" msgstr "Indizearen izena :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indize mota :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr " %s  zutabe indizean gehituta" @@ -12529,39 +12541,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Ezabatu taula honetako jarraipen datuak" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Zerbitzariaren bertsioa" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" @@ -12920,8 +12932,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13049,8 +13061,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/fa.po b/po/fa.po index 9fdf6dff39..520ce14900 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:06+0200\n" "Last-Translator: Michal Čihař \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=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "شماره صفحه:" @@ -40,36 +40,36 @@ msgstr "" "اید ، یا تنظیمات امنیتی مرورگر شما طوری تنظیم شده که از به روز رسانی جلوگیری " "می کند." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "جستجو" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "جستجو" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "تاييد" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "نام کلیدی" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "توضیحات" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "این مقدار را استفاده کنید" @@ -120,18 +120,18 @@ msgstr "پایگاه داده %1$s ایجاد شد." msgid "Database comment: " msgstr "توضيحات پایگاه داده: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "توضيحات جدول" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "ستون" msgid "Type" msgstr "نوع" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "نوع" msgid "Null" msgstr "خالي" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "خالي" msgid "Default" msgstr "پيش‌فرض" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "پيش‌فرض" msgid "Links to" msgstr "پيوند به" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "پيوند به" msgid "Comments" msgstr "توضيحات" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "توضيحات" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "خير" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "خير" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بلي" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "نمايش الگوي پايگاه داده" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "انتخاب همه" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "نام پایگاه داده وارد نشده‌ است!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "پایگاه داده %1$s به %2$s تغییر نام داده شد" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "پایگاه داده %1$s در %2$s کپی شد" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %shere%s را بزنيد." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "جدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "سطرها" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "اندازه" @@ -345,7 +345,7 @@ msgstr "در حال استفاده" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "ایجاد" @@ -353,7 +353,7 @@ msgstr "ایجاد" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "آخرین به روز رسانی" @@ -361,7 +361,7 @@ msgstr "آخرین به روز رسانی" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "آخرین بازدید" @@ -376,7 +376,7 @@ msgstr[1] "%s جدولها" msgid "You have to choose at least one column to display" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "به %svisual builder%s بروید" @@ -408,9 +408,9 @@ msgstr "جدول های پیگیری شده" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "پايگاه داده" @@ -428,66 +428,66 @@ msgstr "به روز شده" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "وضعیت" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "عمل" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "نمايش" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "اطلاعات پیگیری شده برای این جدول را پاک کنید" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "حذف" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "غیر فعال" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "نسخه ها" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "گزارشات دنبال شده" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "تصویر لحظه ای ساختار" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "جدول های پیگیری نشده" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "پیگیری جدول" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "سابقه عملکرد پایگاه داده" @@ -503,12 +503,12 @@ msgstr "نوع صدور را انتخاب کنید تا در فایل ذخیره msgid "Bad parameters!" msgstr "ورودی های اشتباه!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "فضای کافی برای ذخیره فایل %s ." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "وب سرور مجوز ذخیره فایل %s را ندارد ." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "اطلاعات دریافت شده در فایل %s ذخیره شد‬." @@ -530,117 +530,124 @@ msgstr "اطلاعات دریافت شده در فایل %s ذخیره شد‬." msgid "Invalid export type" msgstr "نوع صدور معتبر نیست" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "مقادیر ستون \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "استفاده از OpenStreetMaps به عنوان لایه پایه" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "هندسه" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "درجه" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "درجه %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "افزودن درجه جديد" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "رشته خطی" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "حلقه خارجی" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "حلقه داخلی" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "افزودن يك رشته خطی" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "افزودن يك حلقه داخلی" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "چند گوشه" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "افزودن یک چند ضلعی" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "اضافه کردن هندسه" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "خروجی" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "گزینه \"GeomFromText\" را از ستون \"Function\" انتخاب کنید و رشته زیر را در " "فیلد \"مقدار(value)\" وارد کنید" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "احتمالاً شما سعی کردید یک فایل حجیم را اپلور کنید.لطفاً برای راهکار در مورد " "این محدودیت به%sنوشتار%s مراجعه کنید." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "نمایش بوک مارک" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "بوک مارک حذف شد ." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "امکان خواندن فایل وجود ندارد" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,7 @@ msgstr "" "شما فایلی را با فشرده سازی پشتیبانی نشده بار گذاری میکنید (%s).ممکن است در " "تنظیمات غیر فعال باشد و یا پشتیبانی میسر نباشد ." -#: import.php:400 +#: import.php:404 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 " @@ -659,26 +666,26 @@ msgstr "" "بیشتر بوده. به [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] " "مراجعه نمایید." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "نمی توان کاراکترها را بدون داشتن کتابخانه تبدیل آنها، تبدیل کرد" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "خطا در بارگزار پلاگین ها, لطفا مراحل نصب را چک کنید" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "بوک مارک %s ایجاد شده" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "وارد کردن اطلاعات با موفقیت به پایان رسید , %d کوئری اجرا شد ." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -686,7 +693,7 @@ msgstr "" "زمان انتظار اسکریپت به پایان رسیده, اگر مایلید عملیات را به پایان برسانید , " "فایل مورد نظر را دوباره ثبت کنید تا وارد کردن اطلاعات ادامه پیدا کنید." -#: import.php:513 +#: import.php:517 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." @@ -695,9 +702,9 @@ msgstr "" "تواند ورود داده را تمام کند مگر اینکه شما حداکثر زمان اجرای php را افزایش " "دهید." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد" @@ -712,7 +719,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin با مرورگر هایی که از فریم ها پشتیبانی میکنند کاربر پسندانه تر است" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "عبارت \"DROP DATABASE\" غیر فعال است" @@ -722,7 +729,7 @@ msgstr "عبارت \"DROP DATABASE\" غیر فعال است" msgid "Do you really want to execute \"%s\"?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "شما برای حذف کامل پایگاه داده اقدام کرده اید!" @@ -762,7 +769,7 @@ msgstr "افزودن index" msgid "Edit Index" msgstr "ویرایش کردن ایندکس" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "افزودن %d ستون جديد به index" @@ -812,24 +819,24 @@ msgstr "بستن" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "ويرايش" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "نمودار ترافیک لحظه ای" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr " نمودار روند./اجرا لحظه ای" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "نمودار پرسو جوی لحظه ای" @@ -839,24 +846,24 @@ msgstr "اطلاعات ثابت" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "دیگر" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -876,7 +883,7 @@ msgstr "ترافیک سرور (کیلو بایت)" msgid "Connections since last refresh" msgstr "اتصال ها در آخرین رفرش" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "پروسه ها" @@ -894,7 +901,7 @@ msgstr "سوالات در آخرین رفرش" msgid "Questions (executed statements by the server)" msgstr "سوالات(بخش های اجرا شده توسط سرور)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "آمار پرس و جو" @@ -939,13 +946,13 @@ msgstr "swap سیستم" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "كيلوبايت" @@ -997,32 +1004,32 @@ msgstr "میزان بایت ارسالی" msgid "Bytes received" msgstr "میزان بایت دریافتی" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "اتصالات" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "اگزا بايت" @@ -1036,11 +1043,11 @@ msgstr "%d جدول" msgid "Questions" msgstr "سوالات" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "ترافیک" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "تنظیم" @@ -1061,12 +1068,12 @@ msgid "Please add at least one variable to the series" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "هیچ یک" @@ -1164,7 +1171,7 @@ msgstr "تغيير تنظیمات" msgid "Current settings" msgstr "تنظیمات فعلی" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "عنوان نمودار" @@ -1249,7 +1256,7 @@ msgstr "شرح دادن خروجی" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "زمان" @@ -1345,8 +1352,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "صدور" @@ -1563,12 +1570,12 @@ msgstr "زمان اجرای پرس و جو" msgid "%d is not valid row number." msgstr "%d شماره ردیف معتبر نمی باشد." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "ذخيره" @@ -1627,8 +1634,8 @@ msgstr "نتایج پرس و جو" msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "در نظر نگرفتن" @@ -1738,7 +1745,7 @@ msgstr "شنبه" msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "توليد‌ کن" @@ -1839,63 +1846,63 @@ msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "دسامبر" @@ -1933,32 +1940,32 @@ msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "شنبه" @@ -2071,16 +2078,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "در ثانیه" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "در دقیقه" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "در ساعت" @@ -2097,7 +2104,7 @@ msgstr "حداکثر: %s %s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "مستندات" @@ -2120,14 +2127,14 @@ msgid "en" msgstr "انگلیسی" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "خطا" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2145,212 +2152,212 @@ msgstr "پرس و جوي SQL" msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "خطا در اتصال به اعتبارسنج SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "رد شدن از توضیحات SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "ثبت کوئری" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "بارگیری مجدد" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "رد شدن از اعتبار سنجی SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "ویرایش در خط کوئری" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "در خط" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "استفاده از پروفایل" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "يكشنبه" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s روز ، %s ساعت ، %s دقیقه و %s ثانیه" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "پارامتر یافت نشد:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "قبلی" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "بعدی" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "انتها" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "پرش به پایگاه داده "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "قابلیت %s به خاطر یک باگ شناخته شده تحت تاثیر قرار گرفته ایست، برای اطلاعات " "بیشتر به %s مراجعه کنید" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "ساختار" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "درج" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "فهرست" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "عمليات" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "رایانه خود را مشاهده نمایید:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "فایلی برای آپلود موجود نیست" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "خالي" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "اجرا" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "چاپ" @@ -2367,149 +2374,149 @@ msgstr "تنظمیات دسترسی اشتباه در فایل تنظیمات ، msgid "Font size" msgstr "اندازه فونت" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "صعودي" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "نزولي" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "ترتيب" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "معيارها" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "اضافه/حذف معيارها" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "اضافه/حذف ستون ها" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "به‌هنگام سازي پرس و جو" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "بكارگيري جدولها" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "يا" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "و" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "اینسرت" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "حذف" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "اصلاح" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "تمامي كلمات" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "عبارت كامل" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "بعنوان مبين منظم(as regular expression)" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتيجه ي جستجو \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "مجموع: %s مطابقت" msgstr[1] "مجموع: %s مطابقتها" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s همتا در %2$s" msgstr[1] "%1$s همتا در %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "حذف" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "جستجو در پايگاه‌ داده" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr " یافتن :" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "كلمات با علامت فاصله (\" \") جدا مي‌شوند." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "درجدول های:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "در ستونها:" @@ -2562,8 +2569,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2645,7 +2652,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "از کار انداختن" @@ -2662,8 +2669,8 @@ msgstr "داخل کوئری" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 " "مراجعه کنید ." @@ -2676,7 +2683,7 @@ msgstr "" msgid "total" msgstr "جمع كل" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2687,7 +2694,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "موارد انتخاب‌ شده :" @@ -2697,8 +2704,8 @@ msgstr "موارد انتخاب‌ شده :" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "انتخاب همه" @@ -2739,51 +2746,51 @@ msgstr "پيوند پيدا نشد" msgid "Too many error messages, some are not displayed." msgstr "خطای زیاد،برخی نمایش داده نشدند." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "فایل آپلود شده نبود." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "فایل آپلود شده بیش از upload_max_size قرار دستور در فایل php.ini اجرا" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "فایل آپلود شده کاملا آپلود نشده." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "از دست دادن یک پوشه موقت." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "برای نوشتن فایل بر روی دیسک شکست خورده." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "خطای ناشناخته در آپلود فایل." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "خطا در موقع جابجا کردن فایل آپلود شده." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2792,66 +2799,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "از اینجا نیاز به فعال سازی کوکی ها دارید." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "فهرست‌ها" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "مقایسه" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "توضيحات" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "كليد اصلي حذف گرديد" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "فهرست %s حذف گرديد" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2860,12 +2867,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "پايگاههاي داده" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "سرور" @@ -2935,19 +2942,19 @@ msgstr "كاربر" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "دودويي" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "تکرار" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 #, fuzzy msgid "Variables" msgstr "متغییر" @@ -3082,8 +3089,8 @@ msgstr "" "مقدار UI \"%s\" را نمی توان ذخیره کرد.تغییرات انجام شد اما با رفرش صفحه از " "بین می روند.لطفا ساختار جدول خود را برای تغییرات چک کنید." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "تابع" @@ -3094,11 +3101,11 @@ msgstr "تابع" msgid "Operator" msgstr "عمليات" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "مقدار" @@ -3108,67 +3115,67 @@ msgstr "مقدار" msgid "Table Search" msgstr "جستجو" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "درج" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "ستونها را انتخاب نماييد (حداقل يكي)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "تعداد سطرها در هر صفحه" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "ترتيب نمايش:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "پرس و جوي SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3243,14 +3250,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3500,7 +3507,7 @@ msgstr "به اشتراک گذاشته شده" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "جدولها" @@ -3514,12 +3521,12 @@ msgstr "جدولها" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "داده" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "بار بیش از حد" @@ -3623,7 +3630,7 @@ msgstr "بازکردن" msgid "Closed" msgstr "بسته شده" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3761,22 +3768,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "پاک سازی" @@ -4043,7 +4050,7 @@ msgstr "مجموعه كاراكترهاي پرونده" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "قالب" @@ -4152,7 +4159,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4188,7 +4195,7 @@ msgid "Enclose table and column names with backquotes" msgstr "قراردادن نام جدولها و ستونها بين علامت نقل‌قول" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5634,10 +5641,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5887,52 +5894,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "تغيير کلمه ی عبور" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "بدون کلمه ی عبور" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "دوباره نوشتن" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "رمزگذاری پسورد" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6070,8 +6085,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6157,69 +6172,69 @@ msgstr "نسخه سرور" msgid "authored on %1$s by %2$s" msgstr "نسخه سرور" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "No databases" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "No databases" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6299,71 +6314,71 @@ msgstr "" "استفاده می کند به داده های ذخیره سازی و شاخص از جداول آن است InnoDB اندازه " "بافر حافظه از." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr " InnoDB حالت" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr " مقداراستفاده از حافظه بافر" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "صفحه ها" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "صفحه های ازاد" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "صفحه های کثیف" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "صفحه های شامل داده" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "صفحه هایی که بایستی تراز (پاک) شوند" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "صفحه های مشغول" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "صفحه های ضامندار" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "فعالیت حافظه بافر" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "درخواست را بخوانید" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "درخواست را بنویسید" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "نمیتواند خوانده شود" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "منتظر نوشتن" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6554,8 +6569,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6571,124 +6586,124 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "No databases" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "No databases" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "پنهان کردن" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "دودويي" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6736,7 +6751,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7028,7 +7043,7 @@ msgstr "" msgid "Rename table to" msgstr "بازناميدن جدول به" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7148,8 +7163,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 برای " "ایجاد آن استفاده نمایید." @@ -7227,21 +7242,21 @@ msgstr "نام كاربر/اسم رمز اشتباه است. دسترسي مجا msgid "Can not find signon authentication script:" msgstr "کد ورود یافت نشد :" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "فایل %s دارای کلید id نمی باشد" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "ورود سخنت افزاری نا موفق بود" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "کلید ورود معتبری داده نشده است" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "در حال ورود..." @@ -7397,20 +7412,21 @@ msgstr "نمايش خصوصيات" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "ميزبان" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "زمان توليد" @@ -7649,7 +7665,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7851,7 +7867,7 @@ msgstr "ساخت PDFs" msgid "Displaying Column Comments" msgstr "نمايش توضيحات ستون" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7917,7 +7933,7 @@ msgstr "عدم انتخاب همه" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7928,8 +7944,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7950,32 +7966,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "متغییر" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "سرور" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "همه كاربران" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7984,34 +8000,34 @@ msgstr "همه كاربران" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8074,7 +8090,7 @@ msgstr "" msgid "Event name" msgstr "نام كاربر" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8439,7 +8455,7 @@ msgstr "در پايگاه داده هيچ جدولي یافت نشد." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8449,7 +8465,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "جدول \"%s\" وجود ندارد!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8496,105 +8512,105 @@ msgstr "ويژگيها" msgid "Extra" msgstr "اضافي" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "ساخت يك صفحه جديد" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy msgid "Automatic layout based on" msgstr "نسخه سرور" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "نام ستونها" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "نمايش الگوي PDF" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "نمایش جدول" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "نمايش رنگ" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "نمايش ابعاد جدولها" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "نمايش همه جدولها با عرض يكسان" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "دیکشنری داده‌ها" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "تصوير" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy msgid "Orientation" msgstr "ساختن" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8892,7 +8908,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "كاربر" @@ -9031,8 +9047,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9094,11 +9110,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9180,7 +9196,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالی شد" @@ -9193,12 +9209,12 @@ msgstr "پیگیری فعال می باشد." msgid "Tracking is not active." msgstr "پیگیری فعال نمی باشد." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "نمای %s حذف شد" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف شد" @@ -9229,14 +9245,14 @@ msgid "Column %s has been dropped" msgstr "جدول %s حذف گرديد" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "اصلي" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "فهرست" @@ -9246,7 +9262,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "كاملا متن" @@ -9273,7 +9289,7 @@ msgstr "" msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9284,7 +9300,7 @@ msgstr "شما حذاقل بايد يك ستون را براي نمايش انت msgid "Add column" msgstr "افزودن ستون جديد" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" @@ -9308,15 +9324,15 @@ msgstr "بعد از %s" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "آمار سطرها" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "پويا" @@ -9324,15 +9340,15 @@ msgstr "پويا" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "طول سطر" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "اندازه سطر" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9382,15 +9398,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "اطلاعات" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "موثر" @@ -9415,9 +9431,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:91 msgid "" @@ -9431,18 +9447,18 @@ msgstr "" msgid "Move column" msgstr "اضافه يا حذف ستونها" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -9452,40 +9468,40 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "خير" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "بعد از %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9612,8 +9628,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:369 msgid "" @@ -9680,7 +9696,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9964,29 +9980,29 @@ msgstr "فایل وجود ندارد" msgid "Select binary log to view" msgstr "سابقه بانری را برای مشاهده انتخاب کنید" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "فایل ها" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "پاک کردن کوئری های نمایش داده شده" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "نمایش کامل کوئری" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "نام سابقه" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "موقعیت" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "موقعیت اصلی" @@ -9994,31 +10010,31 @@ msgstr "موقعیت اصلی" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "پايگاه داده %s حذف گرديد." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "فعال سازی آمارها" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10088,49 +10104,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10139,275 +10155,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "كاملا متن" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "فقط ساختار" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "فقط ساختار" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "وروديهاي تمديدشده" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "نمايش جدولها" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 #, fuzzy msgid "Runtime Information" msgstr "اطلاعات ورود" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "تعداد سطرها در هر صفحه" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "توليد‌شده توسط" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "عدم تغيير اسم رمز" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "نمايش جدولها" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "نمايش جدولها" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy msgid "Related links:" msgstr "عمليات" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "پرس و جو" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "تابع" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10415,115 +10431,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "شرج" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "شناسه" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "دستور" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10531,78 +10547,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10610,7 +10626,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10618,42 +10634,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10661,33 +10677,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10696,243 +10712,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "مجموعه كاراكترهاي پرونده:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10940,99 +10956,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11040,18 +11056,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11059,69 +11075,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "پیگردی فعال نمی باشد." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "شنبه" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "افزودن ستون جديد" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11130,7 +11146,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11138,18 +11154,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11157,11 +11173,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11169,97 +11185,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "حذف پایگاه داده" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "افزودن يك كاربر جديد" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "پرس و جوي SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "آمار سطرها" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Select Tables" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "پرس و جو" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] " ثانیه" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11376,19 +11392,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11680,44 +11696,44 @@ msgstr "" msgid "Wrong data" msgstr "No databases" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "نتيجه SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "توليد‌شده توسط" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -11875,16 +11891,16 @@ msgstr "نماي چاپ" msgid "Index name:" msgstr "اسم فهرست :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اصلي باشد!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "نوع فهرست :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, fuzzy, php-format msgid "Add to index  %s column(s)" msgstr "ساخت يك فهرست در %s ستون" @@ -12053,38 +12069,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "نسخه سرور" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "نسخه سرور" @@ -12446,8 +12462,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12575,8 +12591,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/fi.po b/po/fi.po index c3bc41ac4d..9370061a86 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-06-24 00:18+0200\n" "Last-Translator: Jukka Penttinen \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: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sivunumero:" @@ -39,36 +39,36 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Etsi" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Etsi" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Suorita" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Avaimen nimi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Kuvaus" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Käytä tätä arvoa" @@ -119,18 +119,18 @@ msgstr "Tietokanta %1$s on luotu." msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Taulun kommentit" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Sarake" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Sarake" msgid "Type" msgstr "Tyyppi" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Tyyppi" msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Tyhjä" msgid "Default" msgstr "Oletusarvo" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Oletusarvo" msgid "Links to" msgstr "Viittaa sarakkeeseen" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Viittaa sarakkeeseen" msgid "Comments" msgstr "Kommentit" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Kommentit" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ei" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Kyllä" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Valitse kaikki" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tietokannan %1$s nimi on nyt %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tietokanta %1$s on kopioitu tietokantaan %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgstr "" "phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, " "mistä tämä johtuu." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "Taulu" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Kpl rivejä" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Koko" @@ -344,7 +344,7 @@ msgstr "käytössä" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Luotu" @@ -352,7 +352,7 @@ msgstr "Luotu" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Viimeksi päivitetty" @@ -360,7 +360,7 @@ msgstr "Viimeksi päivitetty" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Viimeksi tarkistettu" @@ -375,7 +375,7 @@ msgstr[1] "%s taulua" msgid "You have to choose at least one column to display" msgstr "Valitse vähintään yksi sarake" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Vaihda %svisuaaliseen muokkaimeen%s" @@ -407,9 +407,9 @@ msgstr "Seurattavat taulut" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Tietokanta" @@ -427,66 +427,66 @@ msgstr "Päivitetty" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Tila" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Toiminnot" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Näytä" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Poista tämän taulun seurantatiedot" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Tuhoa" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "käytössä" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ei käytössä" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versiot" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Seuraa taulua" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Tietokantaloki" @@ -502,12 +502,12 @@ msgstr "Valittu vientityyppi on tallennettava tiedostoon!" msgid "Bad parameters!" msgstr "Virheelliset parametrit!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." @@ -529,117 +529,124 @@ msgstr "Vedos tallennettiin tiedostoon %s." msgid "Invalid export type" msgstr "Virheellinen vientitapa" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Arvo sarakkeelle %s" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Käytä perustasossa OpenStreetMaps-karttaa" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Piste" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Piste %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Lisää piste" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Rivimerkkijono" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Ulkoympyrä" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Sisäympyrä" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Lisää rivimerkkijono" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Lisää sisäympyrä" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Monikulmio" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Lisää monikulmio" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Lisää geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Tulos" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Valitse \"Toiminto\"-sarakkeesta \"GeomFromText\" ja liitä alla oleva " "merkkijono \"Arvo\"-kenttään" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:400 +#: import.php:404 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 " @@ -658,26 +665,26 @@ 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -685,7 +692,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "lähetä sama tiedosto uudestaan, ja tuonti jatkuu." -#: import.php:513 +#: import.php:517 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." @@ -694,9 +701,9 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-kyselyn suoritus onnistui" @@ -710,7 +717,7 @@ msgstr "Takaisin" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." @@ -719,7 +726,7 @@ msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -759,7 +766,7 @@ msgstr "Lisää indeksi" msgid "Edit Index" msgstr "Muokkaa indeksiä" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Lisää indeksiin %d kolumni(a)" @@ -809,24 +816,24 @@ msgstr "Sulje" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Liikennetaulu" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Elävä yhteys- ja prosessikaavio" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Elävä kyselykaavio" @@ -836,24 +843,24 @@ msgstr "Staattinen data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Toinen" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -873,7 +880,7 @@ msgstr "Palvelimen kuormitus (kt:nä)" msgid "Connections since last refresh" msgstr "Yhteydenttoa viimeisestä päivityksestä" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prosessit" @@ -891,7 +898,7 @@ msgstr "Kysymyksiä viimeisestä päivityksestä lähtien" msgid "Questions (executed statements by the server)" msgstr "Kysymyksiä (palvelimen suorittamat lauseet)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Kyselyn ominaisuuksia" @@ -937,13 +944,13 @@ msgstr "Järjestelmän sivutusmuisti" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "kt" @@ -995,32 +1002,32 @@ msgstr "Tavua lähetetty" msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Yhteydet" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "tavua" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "Et" @@ -1034,11 +1041,11 @@ msgstr "%d taulu(a)" msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Asetukset" @@ -1059,12 +1066,12 @@ msgid "Please add at least one variable to the series" msgstr "Lisää sarjaan vähintään yksi muuttuja" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ei mitään" @@ -1164,7 +1171,7 @@ msgstr "Muuta asetuksia" msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Kaavion otsikko" @@ -1249,7 +1256,7 @@ msgstr "Selitä SQL-kysely" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Aika" @@ -1346,8 +1353,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" @@ -1559,12 +1566,12 @@ msgstr "Kyselyn suoritusaika" msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Tallenna" @@ -1620,8 +1627,8 @@ msgstr "Kyselyn tulokset" msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Älä huomioi" @@ -1729,7 +1736,7 @@ msgstr "Näytä rivi(t)" msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Keksi" @@ -1828,63 +1835,63 @@ msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Joulu" @@ -1922,32 +1929,32 @@ msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "La" @@ -2063,16 +2070,16 @@ msgstr "" "Odottamattomia merkkejä rivillä %1$s. Pitäisi olla sarkain (tab), mutta " "löytyi \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "sekunnissa" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minuutissa" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "tunnissa" @@ -2089,7 +2096,7 @@ msgstr "Enimmäiskoko: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Ohjeet" @@ -2112,14 +2119,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Virhe" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-kysely" @@ -2137,210 +2144,210 @@ msgstr "SQL-kysely" msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL-tarkistimeen yhdistäminen epäonnistui!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Ilman PHP-koodia" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Luo PHP-koodi" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Suorita kysely" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Päivitä" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Tarkista SQL-lause" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Tämän kyselyn muokkaus" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilointi" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Su" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Puuttuva parametri:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Aloitus" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Edellinen sivu" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Seuraava sivu" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Rakenne" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lisää rivi" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Selaa" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Toiminnot" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Tyhjennä" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Suorita" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Tulosta" @@ -2359,105 +2366,105 @@ msgstr "" msgid "Font size" msgstr "Fonttikoko" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Nouseva" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Laskeva" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Järjestä" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Hakuehdot" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Lisää tai poista hakuehtoja" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Lisää tai poista sarakkeita" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Päivitä kysely" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Käytä tauluja" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Tai" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ja" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Lisää" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Poista" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Muokkaa" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "vähintään yksi sanoista" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "kaikki sanat" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "koko lause" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "regexp-haku" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Yhteensä: %s hakutulosta" msgstr[1] "Yhteensä: %s hakutulosta" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2466,44 +2473,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s hakutulosta taulussa %2$s" msgstr[1] "%1$s hakutulosta taulussa %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Poista" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Hae tietokannasta" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Haettavat sanat tai arvot (jokerimerkki: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Hae:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Sanat erotetaan välilyönnein." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Tauluissa:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Sarakkeen sisällä:" @@ -2548,8 +2555,8 @@ msgstr "Otsikot joka %s rivi" msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2628,7 +2635,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Lopeta" @@ -2645,11 +2652,11 @@ msgstr "lauseessa" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2659,7 +2666,7 @@ msgstr "Näkyvillä rivit" msgid "total" msgstr "yhteensä" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Kysely kesti %01.4f s." @@ -2670,7 +2677,7 @@ msgstr "Kysely kesti %01.4f s." #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Valitut:" @@ -2680,8 +2687,8 @@ msgstr "Valitut:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Valitse kaikki" @@ -2719,17 +2726,17 @@ msgstr "Linkkiä ei löydy" msgid "Too many error messages, some are not displayed." msgstr "Liikaa virhesanomia, joitakin ei näytetä." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Kyseessä ei ollut ladattu tiedosto." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2737,37 +2744,37 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Virhe siirrettäessä ladattua tiedostoa." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Ladattua (ja siirrettyä) tiedostoa ei voi lukea." @@ -2776,66 +2783,66 @@ msgstr "Ladattua (ja siirrettyä) tiedostoa ei voi lukea." msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javaskripti on oltava päällä tämän jälkeen" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Indeksiä ei ole määritelty!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksit" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Aakkosjärjestys" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentti" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Perusavain on poistettu" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeksi %s on poistettu" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2846,12 +2853,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Tietokannat" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Palvelin" @@ -2919,18 +2926,18 @@ msgstr "Käyttäjät" msgid "Synchronize" msgstr "Yhtenäistä" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binääriloki" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Kahdennus" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Muuttujat" @@ -3065,8 +3072,8 @@ msgstr "" "eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne " "muuttunut." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktio" @@ -3076,11 +3083,11 @@ msgstr "Funktio" msgid "Operator" msgstr "Operaattori" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Arvo" @@ -3088,61 +3095,61 @@ msgstr "Arvo" msgid "Table Search" msgstr "Taulu haku" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Muokkaa/lisää" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Valitse sarakkeet (vähintään yksi):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Rivejä sivulla" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Lajittelujärjestys:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Tulostettavien rivien enimmäismäärä" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Tarkempi haku" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Suorita mallin mukainen kysely (jokerimerkki: \"%\") kahteen eri sarakkeeseen" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Kuinka käytetään" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Palauta zoomaus" @@ -3227,20 +3234,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - " -"-1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" +"Pieni liukuluku, mahdolliset arvot ovat välillä -3.402823466E+38 - -" +"1.175494351E-38, 0 ja 1.175494351E-38 - 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä " -"-1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " +"Kaksoistarkkuuksinen liukuluku, mahdolliset arvot ovat välillä -" +"1.7976931348623157E+308 - -2.2250738585072014E-308, 0, ja " "2.2250738585072014E-308 - 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3486,7 +3493,7 @@ msgstr "jaettu" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Taulut" @@ -3500,12 +3507,12 @@ msgstr "Taulut" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Tietoa" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Ylijäämä" @@ -3610,7 +3617,7 @@ msgstr "Avaa" msgid "Closed" msgstr "Suljettu" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3748,22 +3755,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Tämä asetus on poissa käytöstä; sitä ei käytetä asetusmäärittelyssäsi" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Aseta arvo: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Palauta oletusarvo" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Anna käyttäjien mukauttaa tätä arvoa" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Palauta" @@ -4051,7 +4058,7 @@ msgstr "Tiedoston merkistö" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Muoto" @@ -4160,7 +4167,7 @@ msgstr "Tunniste" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tyyppi" @@ -4196,7 +4203,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Laita taulujen ja sarakkeiden nimet lainausmerkkeihin" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL-yhteensopiva tila" @@ -5748,10 +5755,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6010,7 +6017,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6018,47 +6025,55 @@ msgstr "" "Palvelin ei vastaa (tai paikallisen palvelimen pistokke ei ole määritelty " "oikein)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Palvelin ei vastaa." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Lisätiedot..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Vaihda salasana" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Ei salasanaa" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Kirjoita uudelleen" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Salasanan salaus" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 -yhteensopiva" @@ -6188,8 +6203,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on tukittu %1$sstrftime%2$s mukaan, joten voi käyttää " "ajanmuodostostusmerkkijonoja. Lisäksi tapahtuu seuraavat muutokset: %3$s. " @@ -6268,7 +6283,7 @@ msgstr "Luo versio %s kohteesta %s.%s" msgid "authored on %1$s by %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6278,33 +6293,33 @@ msgstr "" "tunnettu vika Webkit-pohjaisissa (Safari, Google Chrome, Arora jne) " "selaimissa." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Lataa tuontitiedostoa..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Tiedostoa käsitellään, ole kärsivällinen." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6312,30 +6327,30 @@ msgstr "" "Ole kärsivällinen, tiedostoa lähetetään. Lähetyksen yksityiskohdat eivät ole " "saatavilla." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Tuonti nykyiselle palvalimelle" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Tuonti tietokantaan \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Tuonti tauluun \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Tuotava tiedosto:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6419,71 +6434,71 @@ msgstr "" "Kertoo muistipuskurin koon, jota InnoDB käyttää taulujen tietojen ja " "indeksien siirtämiseen välimuistiin." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB:n tila" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Puskurivarannon käyttö" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sivua" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Vapaat sivut" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Epäsiistit sivut" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Tietoja sisältävät sivut" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Siistimistä vaativat sivut" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Käytössä olevat sivut" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Lukitut sivut" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Puskurivarannon aktiivisuus" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Hakupyynnöt" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Kirjoituspyynnöt" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Epäonnistuneet lukuyritykset" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Viive ennen kirjoitusta" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Epäonnistuneet lukuyritykset: %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Kirjoitusviipeet: %" @@ -6714,8 +6729,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6730,139 +6745,139 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "GIS visualisoinnille ei ole tietoja." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "näyttää rakenteen sisällön painamalla sen nimeä" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Siirry tietokantaan" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Siirry tauluun" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vain rakenne" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Siirry näkymään" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Kätke" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binääritietoa" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause 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 " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Aloita lisäys alusta %s rivillä" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa." -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -6912,7 +6927,7 @@ msgstr "" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7201,7 +7216,7 @@ msgstr "Taulun valinnat" msgid "Rename table to" msgstr "Nimeä taulu uudelleen" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Tallennusmoottori" @@ -7323,11 +7338,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7405,21 +7420,21 @@ msgstr "Väärä käyttäjätunnus tai salasana. Käyttö estetty." msgid "Can not find signon authentication script:" msgstr "Kirjautumisen todennuskomentosarjaa ei voi löytää:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Tiedosto %s ei sisällä avaintunnusta" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Laitetodennus epäonnistui" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Kelvollista todennusavainta ei ole asetettu" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Todennetaan..." @@ -7560,20 +7575,21 @@ msgstr "Näytä MIME-tyypit" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Palvelin" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Luontiaika" @@ -7805,7 +7821,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Taulun nimi" @@ -8101,7 +8117,7 @@ msgstr "PDF-tiedostojen luonti" msgid "Displaying Column Comments" msgstr "Sarakkeiden kommentit näkyvissä" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" @@ -8169,7 +8185,7 @@ msgstr "Poista valinta kaikista" msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" @@ -8182,8 +8198,8 @@ msgstr "" "Jos ei ole, lisää seuraava rivi [mysqld]-osaan:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8203,15 +8219,15 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Muuttuja" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Palvelimen tunnus" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8219,17 +8235,17 @@ msgstr "" "Luettelossa on näkyvillä vain ne alipalvelimet, joilla on valinta --report-" "host=host_name." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Lisää alikahdennuksen käyttäjä" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Kuka tahansa käyttäjä" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8238,27 +8254,27 @@ msgstr "Kuka tahansa käyttäjä" msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8267,7 +8283,7 @@ msgstr "" "Kun Host-taulua käytetään, tätä kenttää ei huomioida, vaan sen sijaan " "käytetään Host-taulussa olevia tietoja." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Keksi salasana" @@ -8337,7 +8353,7 @@ msgstr "Lisätiedot..." msgid "Event name" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tapahtuman tyyppi" @@ -8748,7 +8764,7 @@ msgstr "Tietokannassa ei ole tauluja." msgid "There are no events to display." msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8758,7 +8774,7 @@ msgstr "Lähetettäviä tiedostoja ei ole" msgid "The %s table doesn't exist!" msgstr "Taulua \"%s\" ei ole!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8807,97 +8823,97 @@ msgstr "Attribuutit" msgid "Extra" msgstr "Lisätiedot" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Luo uusi sivu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Sivun nimi" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automaattinen ulkoasu" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Valitse muokattava sivu" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Valitse taulut" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Valitse taulut" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Sarakkeiden nimet" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaatioskeema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Näytä ruudukko" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Näytä värit" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Näytä taulujen ulottuvuus" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Näytä kaikki taulut samanlevyisinä" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Tietosanasto" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Näytä vain avaimet" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Vaakatasossa" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Pystytasossa" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Suunta" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Paperin koko" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8905,7 +8921,7 @@ msgstr "" "Nykyisellä sivulla on viittauksia tauluihin, joita ei enää ole olemassa. " "Haluatko poistaa nuo viittaukset?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Näytä/kätke luonnospöytä" @@ -9212,7 +9228,7 @@ msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Käyttäjä" @@ -9359,8 +9375,8 @@ msgstr "Käyttäjien yleiskatsaus" 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 " @@ -9421,11 +9437,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -9519,7 +9535,7 @@ msgstr "" "SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" "laajennukset on asennettu. Lisätietoa on %sohjeissa%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" @@ -9532,12 +9548,12 @@ msgstr "Seuranta on käytössä." msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" @@ -9568,14 +9584,14 @@ msgid "Column %s has been dropped" msgstr "Taulu %s on poistettu" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Perusavain" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeksi" @@ -9585,7 +9601,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Koko teksti" @@ -9613,7 +9629,7 @@ msgstr "Relaationäkymä" msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9625,7 +9641,7 @@ msgstr "Vähintään yksi kenttä on lisättävä." msgid "Add column" msgstr "Lisää sarake/sarakkeita" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" @@ -9650,15 +9666,15 @@ msgstr "Jälkeen sarakkeen: %s" msgid "Create an index on  %s columns" msgstr "Luo  %s:n sarakkeen indeksi" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Rivitilastot" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "staattinen" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynaaminen" @@ -9666,15 +9682,15 @@ msgstr "dynaaminen" msgid "partitioned" msgstr "ositettu" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Rivin pituus" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Rivin koko" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9730,15 +9746,15 @@ msgstr "Käytä indeksiä/indeksejä" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Tiedot" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Levytilan käyttö" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Pätevä" @@ -9780,7 +9796,7 @@ msgstr "" msgid "Move column" msgstr "Poista sarake/sarakkeet" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9789,11 +9805,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:145 msgid "Transformation options" msgstr "Muunnosvaihtoehdot" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9804,36 +9820,36 @@ msgstr "" ">Jos tarvitset arvoissa kenoviivaa (\"\\\") tai yksittäistä lainausmerkkiä " "(\"'\"), lisää merkin eteen kenoviiva (esim. '\\\\xyz' tai 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Ei mitään" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Määritelty:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Jälkeen sarakkeen: %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION-määritelmä" @@ -10065,7 +10081,7 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Ei tietokantoja" @@ -10377,29 +10393,29 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Lyhennä näytettävät kyselyt" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Lokin nimi" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Sijainti" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Alkuperäinen sijainti" @@ -10407,7 +10423,7 @@ msgstr "Alkuperäinen sijainti" msgid "Character Sets and Collations" msgstr "Merkistökoodaukset ja aakkosjärjestykset" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10415,24 +10431,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s tietokantaa poistettiin onnistuneesti." msgstr[1] "%s tietokantaa poistettiin onnistuneesti." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Tietokantatilastot" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Isäntäpalvelimen kahdennus" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Alipalvelimen kahdennus" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Näytä tilastot" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10504,40 +10520,40 @@ msgstr "Käyttöoikeuksien uudelleenlataus onnistui." msgid "Unknown error" msgstr "Tuntematon virhe" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Isäntäpalvelimeen %s ei voida muodostaa yhteyttä." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Pääpalvelinta ei voitu vaihtaa" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10546,11 +10562,11 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon isäntäpalvelimeksi. " "Haluatko määrittää sen asetukset?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Isäntäpalvelimen asetukset" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10564,19 +10580,19 @@ msgstr "" "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " "tiettyjen tietokantojen kahdennuksen. Valitse tila:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Kahdenna kaikki tietokannat; Sivuuta:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Sivuuta kaikki tietokannat; Kahdenna:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Valitse tietokannat:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10584,7 +10600,7 @@ msgstr "" "Lisää nyt seuraavat rivit my.cnf-tiedostoosi ja käynnistä sitten MySQL-" "palvelin alusta." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10594,73 +10610,73 @@ msgstr "" "jälkeen esiin pitäisi tulla sanoman, joka kertoo, että palvelin on asetettu isäntäpalvelimeksi" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Palvelin on määritetty kahdennustoiminnon alipalvelimeksi. Mitä haluat tehdä?" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Näytä alipalvelimen tilan taulu" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Yhtenäistä tietokannat isäntäpalvelimen kanssa" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Ohjaa alipalvelinta:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Kokonäkymän alku" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Kokonäkymän loppu" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Nollaa alipalvelin" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "SQL-säie %s vain" -#: server_replication.php:360 +#: server_replication.php:387 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "SQL-säie %s vain" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "IO-säie %s vain" -#: server_replication.php:365 +#: server_replication.php:392 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "IO-säie %s vain" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Virheiden hallinta:" -#: server_replication.php:372 +#: server_replication.php:399 #, fuzzy #| msgid "pping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -10668,19 +10684,19 @@ msgstr "" "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet " "ohitetaan!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Ohita nykyinen virhe" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Ohita seuraava" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "virhettä." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10689,168 +10705,168 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Käsittelijä" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Kyselyvälimuisti" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Säikeet" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Väliaikaista tietoa" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Viivästetyt lisäyslauseet" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Avainvälimuisti" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Liitokset" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Lajittelu" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaktion koordinaattori" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Tyhjennä (sulje) kaikki taulut" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Näytä avoimet taulut" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Näytä alipalvelimet" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Näytä alipalvelimen tila" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Tyhjennä kyselymuisti" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Ajonaikaiset tiedot" -#: server_status.php:810 +#: server_status.php:809 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Rivien määrä:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Päivitä" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Suodatin" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Älä vaihda salasanaa" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näytä avoimet taulut" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Näytä avoimet taulut" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relaatiot" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Tiedot" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10858,33 +10874,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Mukauta käynnistyssivua" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Tieto" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10892,18 +10908,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10911,11 +10927,11 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10923,47 +10939,47 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "Tunnus" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komento" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-palvelimeen ei voitu yhdistää" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10974,16 +10990,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binäärilokin tilapäistä välimuistia käyttäneiden transaktioiden määrä." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10995,11 +11011,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11007,7 +11023,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11015,7 +11031,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11023,23 +11039,23 @@ msgstr "" "Käytössä olevien INSERT DELAYED -käsittelijäsäikeiden määrä. Jokainen INSERT " "DELAYED -kyselyä käyttävä taulu saa käyttöönsä oman säikeensä." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11049,7 +11065,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11060,7 +11076,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11068,7 +11084,7 @@ msgstr "" "Kertoo, kuinka monta kertaa rivejä on luettu avaimen perusteella. Jos tämä " "on suuri, kyselyjen ja taulujen indeksointi suoritetaan oikein." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11078,7 +11094,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11087,7 +11103,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11100,7 +11116,7 @@ msgstr "" "pakottavat MySQL-palvelimen käymään läpi kaikki taulut, tai käytät " "liitoksia, jotka käyttävät avaimia virheellisesti." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11112,35 +11128,35 @@ msgstr "" "yleensä siitä, että tauluja ei ole indeksoitu hyvin, tai että kyselyjä ei " "ole kirjoitettu siten, että ne hyödyntäisivät luomiasi indeksejä." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Tietoa (epäsiistiä tai siistiä) sisältävien sivujen määrä." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Siistittäviksi pyydettyjen, puskurivarannossa olevien sivujen määrä." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11150,7 +11166,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11162,11 +11178,11 @@ msgstr "" "takia. Tämä arvo voidaan laskea näinkin: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11174,7 +11190,7 @@ msgstr "" "InnoDB:n käynnistämien umpimähkäisten ennakkolukujen määrä. Näin käy kyselyn " "lukiessa satunnaisessa järjestyksessä läpi laajoja alueita taulusta." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11182,11 +11198,11 @@ msgstr "" "InnoDB:n käynnistämien perättäisten ennakkolukujen määrä. Näin käy kun " "InnoDB lukee läpi kokonaisen taulun tavallisessa järjestyksessä." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11194,7 +11210,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11208,55 +11224,55 @@ msgstr "" "kertoo tällaisten odotusten määrän. Jos puskurivarannon koko on asetettu " "sopivaksi, tämän arvon pitäisi olla alhainen." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Kertoo, kuinka paljon on tähän mennessä tietoja kirjoitettu (tavuina)." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Suoritettujen päällekkäisten kirjoitustoimenpiteiden määrä ja tätä varten " "kirjoitettujen sivujen määrä." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11264,35 +11280,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11301,52 +11317,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Kertoo, kuinka monta kertaa rivilukitusta on jouduttu odottamaan." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11355,7 +11371,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11364,26 +11380,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "Samaan aikaan avainvälimuistissa olleiden lohkojen määrä enimmillään." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" "Kertoo, kuinka monta pyyntöä on suoritettu avainlohkon hakemiseksi " "välimuistista." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11394,27 +11410,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Kertoo, kuinka monta kertaa välimuistiin on kirjoitettu avainlohko." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" "Kertoo, kuinka monta kertaa levylle on fyysisesti kirjoitettu avainlohko." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11425,18 +11441,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kertoo, kuinka monta riviä INSERT DELAYED -jonoissa odottaa kirjoittamista." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11444,39 +11460,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Avoinna olevien tietovirtojen määrä (käytetään pääasiassa kirjauksessa)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11489,7 +11505,7 @@ msgstr "" "Kyselyvälimuisti päättää välimuistista poistettavat kyselyt LRU-käytännön " "avulla (\"least recently used\" eli \"äskettäin vähiten käytetyt kyselyt\")." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11498,19 +11514,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11518,11 +11534,11 @@ msgstr "" "Kertoo, kuinka moni liitos ei käytä indeksejä. Jos tämä arvo ei ole 0, " "taulujen indeksit olisi hyvä tarkistaa tarkkaan." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Niiden liitosten määrä, jotka käyttivät viitetaulussa aluehakua." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11531,7 +11547,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11539,17 +11555,17 @@ msgstr "" "Kertoo niiden liitosten määrän, jotka käyttävät rajausta ensimmäisessä " "taulussa. (Yleensä ei ole vakavaa, vaikka tämä arvo olisi suuri.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Kertoo niiden liitosten määrän, jotka suorittivat ensimmäisestä taulusta " "täydellisen tarkistuksen." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "SQL-alisäikeen avointen tilapäistaulujen määrä tällä hetkellä." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11557,13 +11573,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Tämän on päällä (ON), mikäli kyseinen palvelin on pääpalvelimeen kytketty " "alipalvelin." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11571,14 +11587,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Niiden kyselyjen määrä, joiden suorittamiseen on kulunut aikaa enemmän kuin " "long_query_time sekuntia." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11587,25 +11603,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Niiden lajittelutoimenpiteiden määrä, jotka on suoritettu lukemalla taulu " "läpi." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11617,7 +11633,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11627,11 +11643,11 @@ msgstr "" "voidaan laskea täten kaavalla Threads_created / yhteyksien lkm. Jos tämä " "arvo on punainen, thread_cache_size-muuttujan arvoa tulisi nostaa." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11643,73 +11659,73 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Käynnistä" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Käytä indeksiä/indeksejä" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR-tekstikentän sarakkeet" -#: server_status.php:1786 +#: server_status.php:1785 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Virheiden hallinta:" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Palauta oletusarvoon" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "Tiedot" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11718,7 +11734,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11726,18 +11742,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11745,11 +11761,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11757,97 +11773,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tuhoa tietokanta" -#: server_status.php:1841 +#: server_status.php:1840 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Valitse taulut" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Virheellinen taulun nimi" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Lisää uusi palvelin" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-kyselyt" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Näytä tilastot" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Valitse taulut" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11855,7 +11871,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekunti" msgstr[1] "Sekunti" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11976,19 +11992,19 @@ msgstr "" "Kohdetietokanta yhtenäistetään täydellisesti lähdetietokantaan. " "Lähdetietokanta pysyy muuttumattomana." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Palvelimen muuttujat ja asetukset" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Tämän istunnon arvo" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globaali arvo" @@ -12380,44 +12396,44 @@ msgstr "" msgid "Wrong data" msgstr "Ei tietokantoja" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Luontiympäristö" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Tunniste" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12584,16 +12600,16 @@ msgstr "Muokkaustila" msgid "Index name:" msgstr "Indeksin nimi:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indeksin tyyppi:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisää indeksiin %s sarake(tta)" @@ -12776,41 +12792,41 @@ msgstr "Vie kohteena %s" msgid "Show versions" msgstr "Näytä versiot" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Poista kohteen %s.%s seuranta" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Luo versio" @@ -13185,8 +13201,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13321,8 +13337,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14080,8 +14096,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." #~ msgstr "" -#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä " -#~ "%s tekee." +#~ "Tälle muunnokselle ei ole saatavilla kuvausta.
Kysy tekijältä, mitä %" +#~ "s tekee." #~ msgid "" #~ "MIME types printed in italics do not have a separate transformation " @@ -14207,8 +14223,8 @@ msgstr "Enim. yhtäaikaisia yhteyksiä" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta " -#~ "%s?" +#~ "Haluatko varmasti poistaa käytöstä kaikki BLOB-viittaukset tietokannasta %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/fr.po b/po/fr.po index 44f455aa18..365ad60094 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-24 18:37+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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Page n° : " @@ -41,36 +41,36 @@ msgstr "" "navigateur bloque les mises à jour entre fenêtres pour des raisons de " "sécurité." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Rechercher" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Rechercher" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Description" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Utiliser cette valeur" @@ -121,18 +121,18 @@ msgstr "La base de données %1$s a été créée." msgid "Database comment: " msgstr "Commentaire sur la base de données: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Commentaires sur la table" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Colonne" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Colonne" msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Null" msgid "Default" msgstr "Défaut" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Défaut" msgid "Links to" msgstr "Relié à" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Relié à" msgid "Comments" msgstr "Commentaires" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Commentaires" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Non" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Oui" @@ -276,33 +276,33 @@ msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Tout sélectionner" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de données %1$s a été renommée en %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de données %1$s a été copiée sur %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse " "du problème, cliquez %sici%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Table" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Lignes" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Taille" @@ -346,7 +346,7 @@ msgstr "utilisé" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Création" @@ -354,7 +354,7 @@ msgstr "Création" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Dernière modification" @@ -362,7 +362,7 @@ msgstr "Dernière modification" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Dernière vérification" @@ -377,7 +377,7 @@ msgstr[1] "%s tables" msgid "You have to choose at least one column to display" msgstr "Vous devez choisir au moins une colonne à afficher" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passer au %smode visuel%s" @@ -409,9 +409,9 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Base de données" @@ -429,66 +429,66 @@ msgstr "Mis à jour" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "État" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Action" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Afficher" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Supprimer" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "actif" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "non activé" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versions" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Instantané" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Suivre la table" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Journal de la base de données" @@ -504,12 +504,12 @@ msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier !" msgid "Bad parameters!" msgstr "Paramètres incorrects !" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -524,7 +524,7 @@ msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." @@ -533,118 +533,125 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." msgid "Invalid export type" msgstr "Type d'exportation invalide" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valeur pour la colonne «%s»" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utiliser OpenStreetMaps comme couche de base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Géométrie" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Point" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Ajouter un point" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Ligne" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Anneau extérieur" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Anneau intérieur" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygone" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Ajouter un polygone" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Résultat" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne " -"dans le champ «Valeur»" +"Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne dans " +"le champ «Valeur»" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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 " "cette limite." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -653,7 +660,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:400 +#: import.php:404 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 " @@ -664,28 +671,28 @@ msgstr "" "par votre configuration de PHP. Voir [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Conversion de caractères impossible sans bibliothèque de conversion" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -693,7 +700,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:513 +#: import.php:517 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." @@ -702,9 +709,9 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Votre requête SQL a été exécutée avec succès" @@ -720,7 +727,7 @@ msgstr "" "phpMyAdmin est plus convivial avec un navigateur supportant les cadres." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -729,7 +736,7 @@ msgstr "La commande «DROP DATABASE» est désactivée." msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -769,7 +776,7 @@ msgstr "Ajouter Index" msgid "Edit Index" msgstr "Modifier un index" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Ajouter %d colonne(s) à l'index" @@ -819,24 +826,24 @@ msgstr "Fermer" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Modifier" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Graphique du trafic en temps réel" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Graphique des connexions et processus en temps réel" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Graphique des requêtes en temps réel" @@ -846,24 +853,24 @@ msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "  " #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -883,7 +890,7 @@ msgstr "Trafic du serveur (en Kio)" msgid "Connections since last refresh" msgstr "Connexions depuis le dernier rafraîchissement" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processus" @@ -901,7 +908,7 @@ msgstr "Questions depuis le dernier rafraîchissement" msgid "Questions (executed statements by the server)" msgstr "Questions (énoncés exécutés par le serveur)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistiques sur les requêtes" @@ -947,13 +954,13 @@ msgstr "Zone d'échange" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "Kio" @@ -1005,32 +1012,32 @@ msgstr "Octets envoyés" msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Connexions" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "Eio" @@ -1044,11 +1051,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Paramètres" @@ -1069,12 +1076,12 @@ msgid "Please add at least one variable to the series" msgstr "Veuillez ajouter au moins une variable à la série" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Aucune" @@ -1174,7 +1181,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Titre du graphique" @@ -1262,7 +1269,7 @@ msgstr "Expliquer les résultats" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Moment" @@ -1358,8 +1365,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1570,12 +1577,12 @@ msgstr "Durée d'exécution de la requête" msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Sauvegarder" @@ -1634,8 +1641,8 @@ msgstr "Opérations sur les résultats" msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorer" @@ -1745,7 +1752,7 @@ msgstr "Afficher les lignes correspondantes" msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Générer" @@ -1844,63 +1851,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Décembre" @@ -1938,32 +1945,32 @@ msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sam" @@ -2077,19 +2084,19 @@ msgstr "Caractères imprévus à la ligne %s" #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais " -"\"%2$s\" a été trouvé" +"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais \"%2" +"$s\" a été trouvé" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "par seconde" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "par minute" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "par heure" @@ -2106,7 +2113,7 @@ msgstr "Taille maximum: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentation" @@ -2129,14 +2136,14 @@ msgid "en" msgstr "fr" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Erreur" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Requête SQL" @@ -2154,211 +2161,211 @@ msgstr "Requête SQL" msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible !" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Exécuter la requête" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Actualiser" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Éditer cette requête en place" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilage" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dim" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Paramètre manquant : " -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Début" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Précédent" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Suivant" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Structure" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insérer" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Afficher" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Opérations" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Choisissez depuis le répertoire de téléchargement du serveur web %s : " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Vider" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Exécuter" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimer" @@ -2377,149 +2384,149 @@ msgstr "" msgid "Font size" msgstr "Taille du texte" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Croissant" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Décroissant" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Tri" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Critère" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Ajouter/effacer des lignes" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Ajouter/effacer des colonnes" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Mise-à-jour de la requête" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Utiliser les tables" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ou" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Et" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ajouter" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Effacer" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modifier" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s : " -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "au moins un mot" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "tous les mots" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "phrase exacte" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "expression réguliére" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Résultats de la recherche de «%s» %s : " -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total : %s occurence" msgstr[1] "Total : %s occurences" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s correspondance dans %2$s" msgstr[1] "%1$s correspondances dans %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Effacer" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Effectuer une nouvelle recherche dans la base de données" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Mots ou valeurs à rechercher (passe-partout: «%») : " -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Type de recherche : " -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Séparer les mots par un espace (« »)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dans les tables : " -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dans la colonne : " @@ -2564,8 +2571,8 @@ msgstr "En-têtes à chaque %s ligne" msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2642,7 +2649,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Supprimer" @@ -2661,11 +2668,11 @@ msgstr "dans la requête" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" +"sdocumentation%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2675,7 +2682,7 @@ msgstr "Affichage des lignes" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" @@ -2686,7 +2693,7 @@ msgstr "Traitement en %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Pour la sélection : " @@ -2696,8 +2703,8 @@ msgstr "Pour la sélection : " #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Tout cocher" @@ -2736,17 +2743,17 @@ msgid "Too many error messages, some are not displayed." msgstr "" "Les messages d'erreur sont trop nombreux, certains ne sont pas affichés." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Le fichier n'était pas un fichier téléversé." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2754,27 +2761,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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2782,11 +2789,11 @@ msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Impossible de lire le fichier téléversé (déplacé)." @@ -2795,66 +2802,66 @@ msgstr "Impossible de lire le fichier téléversé (déplacé)." msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript doit être activé" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Aucun index n'est défini !" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Interclassement" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Commentaire" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "La clé primaire a été effacée" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "L'index %s a été effacé" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2865,12 +2872,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bases de données" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Serveur" @@ -2938,18 +2945,18 @@ msgstr "Utilisateurs" msgid "Synchronize" msgstr "Synchroniser" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Log binaire" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Réplication" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variables" @@ -3085,8 +3092,8 @@ msgstr "" "sera pas persistant après actualisation de cette page. Merci de vérifier si " "la structure de la table a changé." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fonction" @@ -3096,11 +3103,11 @@ msgstr "Fonction" msgid "Operator" msgstr "Opérateur" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valeur" @@ -3108,62 +3115,62 @@ msgstr "Valeur" msgid "Table Search" msgstr "Recherche dans la table" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Modifier/Insérer" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Choisir les colonnes (au moins une) : " -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Critères de recherche (pour l'énoncé «where») : " -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Nombre de lignes par page" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordre d'affichage : " -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Utiliser cette colonne pour décrire chaque point" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Critères de recherche supplémentaires" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Faites une recherche «par valeur» (passepartout: «% ») sur deux colonnes " "différentes" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Recherche «par valeur» (passepartout: «% »)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Afficher/Modifier les points" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Consignes d'utilisation" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Réinitialiser le zoom" @@ -3203,16 +3210,16 @@ msgstr "Thème" msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" -"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de " -"-128 à 127. Pour les nombres sans signe, c'est de 0 à 255" +"Un nombre entier de 1 octet. La fourchette des nombres avec signe est de -" +"128 à 127. Pour les nombres sans signe, c'est de 0 à 255" #: libraries/Types.class.php:297 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" -"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de " -"-32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" +"Un nombre entier de 2 octets. La fourchette des nombres avec signe est de -" +"32 768 à 32 767. Pour les nombres sans signe, c'est de 0 à 65 535" #: libraries/Types.class.php:299 msgid "" @@ -3251,16 +3258,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Un petit nombre en virgule flottante, la fourchette des valeurs est " -"-3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" +"Un petit nombre en virgule flottante, la fourchette des valeurs est -" +"3.402823466E+38 à -1.175494351E-38, 0, et 1.175494351E-38 à 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Un nombre en virgule flottante double-précision, la fourchette des valeurs " @@ -3310,9 +3317,9 @@ msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" -"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à " -"«2038-01-09 03:14:07» UTC, en nombre de secondes depuis le moment de " -"référence («1970-01-01 00:00:00» UTC)" +"Un type d'horodatage, la fourchette est de «1970-01-01 00:00:01» UTC à «2038-" +"01-09 03:14:07» UTC, en nombre de secondes depuis le moment de référence " +"(«1970-01-01 00:00:00» UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3560,7 +3567,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tables" @@ -3574,12 +3581,12 @@ msgstr "Tables" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Données" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Perte" @@ -3689,7 +3696,7 @@ msgstr "Ouvert" msgid "Closed" msgstr "Fermé" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3828,22 +3835,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Ce réglage est désactivé, il ne sera pas appliqué à votre configuration" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Assigner la valeur: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Ramener la valeur par défaut" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permettre aux utilisateurs de personnaliser cette valeur" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Réinitialiser" @@ -4135,7 +4142,7 @@ msgstr "Jeu de caractères du fichier" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4244,7 +4251,7 @@ msgstr "Clé de l'étiquette" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Type MIME" @@ -4280,7 +4287,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Entourer les noms de tables et colonnes de guillemets obliques" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Mode de compatibilité SQL" @@ -5869,10 +5876,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Requiert que le validateur SQL soit activé" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6143,7 +6150,7 @@ msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP." msgid "possible deep recursion attack" msgstr "possible attaque récursive" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6151,48 +6158,56 @@ msgstr "" "Le serveur ne répond pas (ou l'interface de connexion vers le serveur MySQL " "local n'est pas correctement configurée)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Le serveur ne répond pas." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "Veuillez vérifier les privilèges du répertoire contenant la base de données." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Détails..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Modifier le mot de passe" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Aucun mot de passe" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Entrer à nouveau" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hachage du mot de passe" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatible MySQL 4.0" @@ -6322,8 +6337,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -6403,7 +6418,7 @@ msgstr "enregistrée le %1$s par %2$s" msgid "authored on %1$s by %2$s" msgstr "l'auteur était %2$s en date du %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6413,33 +6428,33 @@ msgstr "" "bien il s'agit d'une anomalie connue dans les navigateurs basés sur webkit " "(Safari, Google Chrome, Arora, etc)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s sur %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Téléversement du fichier d'importation en cours ..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sec." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Il reste environ %MIN minutes et %SEC secondes." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Il reste environ %SEC secondes." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Le fichier est en traitement, veuillez patienter." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6447,30 +6462,30 @@ msgstr "" "Veuillez patienter, le fichier est téléchargé. Les détails sur le chargement " "ne sont pas disponibles." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importation dans le serveur actuel" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importation dans la base de données «%s»" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importation dans la table «%s»" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Fichier à importer : " -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Le fichier peut être comprimé (%s) ou non." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6558,71 +6573,71 @@ msgstr "" "La taille de la mémoire-tampon utilisée par InnoDB pour les opérations " "d'antémoire sur les données et les index." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "État InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Utilisation de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Pages libres" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Pages modifiées" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pages contenant des données" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pages devant être vidées" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Pages occupées" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Pages verrouillées" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Activité de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Requêtes de lecture" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Requêtes d'écriture" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Lectures non-satisfaites" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Nombre d'attentes d'écriture" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Lectures non-satisfaites en %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Nombre d'attentes d'écriture en %" @@ -6861,8 +6876,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -6879,129 +6894,129 @@ msgstr "Le blogue de PrimeBase XT par Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Les structures suivanates ont été créées ou modifiées. Ici vous pouvez : " -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Consulter le contenu d'une structure en cliquant sur son nom" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modifiez l'un des paramètres en cliquant le lien «Options» correspondant" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Modifier sa structure via le lien «Structure»" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Aller à la base de données : %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Paramètres de modification pour %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Aller à la table : %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Structure de %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Aller à la vue : %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Cacher" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binaire" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" "Il est possible que cette colonne
ne soit pas éditable
en raison " "de sa longueur" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7045,7 +7060,7 @@ msgstr "Ajouter un préfixe de table" msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" @@ -7332,7 +7347,7 @@ msgstr "Options pour cette table" msgid "Rename table to" msgstr "Changer le nom de la table pour" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Moteur de stockage" @@ -7446,8 +7461,8 @@ msgstr "Bienvenue dans %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7527,21 +7542,21 @@ msgstr "Erreur d'utilisateur/mot de passe. Accès refusé." msgid "Can not find signon authentication script:" msgstr "Ne peut trouver le script d'authentification pour le mode signon : " -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Le fichier %s ne contient pas d'identifiant de clé" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "L'authentification matérielle a échoué" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "La clé d'authentification n'est pas branchée" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Authentification en cours..." @@ -7678,20 +7693,21 @@ msgstr "Afficher les types MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Client" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Généré le" @@ -7951,7 +7967,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Nombre de colonnes invalide dans les données CSV à la ligne %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nom de la table" @@ -8202,7 +8218,7 @@ msgstr "Génération de schémas en PDF" msgid "Displaying Column Comments" msgstr "Commentaires de colonnes" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformation" @@ -8276,7 +8292,7 @@ msgstr "Tout décocher" msgid "Slave configuration" msgstr "Configuration de l'esclave" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Changer ou reconfigurer le serveur maître" @@ -8290,8 +8306,8 @@ msgstr "" "[mysqld] : " #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8311,15 +8327,15 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variable" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID du serveur" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8327,17 +8343,17 @@ msgstr "" "Seuls les esclaves démarrés avec l'option --report-host=host_name sont " "visibles sur cette liste." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Tout utilisateur" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8346,27 +8362,27 @@ msgstr "Tout utilisateur" msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Tout client" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8375,7 +8391,7 @@ msgstr "" "Quand la table Host est utilisée, ce champ est ignoré et les valeurs de la " "table Host sont utilisées à la place." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Générer un mot de passe" @@ -8435,7 +8451,7 @@ msgstr "Détails" msgid "Event name" msgstr "Nom de l'événement" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Type d'évènement" @@ -8782,7 +8798,7 @@ msgstr "Aucun événement nommé %1$s n'a été trouvé dans la base de données msgid "There are no events to display." msgstr "Aucun évènement à afficher." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8791,7 +8807,7 @@ msgstr "Aucun évènement à afficher." msgid "The %s table doesn't exist!" msgstr "La table %s n'existe pas !" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8837,91 +8853,91 @@ msgstr "Attributs" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Créer une page" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nom de la page" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Mise en page automatique" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relations internes" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Page à éditer" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Choisissez la page" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Choisissez les tables" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nom des colonnes" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Afficher le schéma relationnel" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Choisissez le type d'exportation des relations" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Grille" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Couleurs" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Dimension des tables" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Afficher toutes les tables avec une largeur identique" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dictionnaire de données" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Ne montrer que les clés" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Paysage" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientation" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Taille du papier" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8929,7 +8945,7 @@ msgstr "" "Cette page fait référence à des tables qui n'existent plus. Voulez-vous " "effacer ces références ?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Éditeur visuel" @@ -9246,7 +9262,7 @@ msgstr "Utilisateurs ayant accès à "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Utilisateur" @@ -9382,8 +9398,8 @@ msgstr "Survol des utilisateurs" 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 " @@ -9444,11 +9460,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -9541,10 +9557,10 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la " -"%sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la %" +"sdocumentation%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" @@ -9557,12 +9573,12 @@ msgstr "Le suivi est actif." msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" @@ -9590,14 +9606,14 @@ msgid "Column %s has been dropped" msgstr "La colonne %s a été effacée" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaire" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9607,7 +9623,7 @@ msgid "Spatial" msgstr "Spatial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Texte entier" @@ -9631,7 +9647,7 @@ msgstr "vue relationnelle" msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." @@ -9639,7 +9655,7 @@ msgstr "Vous devez ajouter au moins une colonne." msgid "Add column" msgstr "Ajouter une colonne" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" @@ -9662,15 +9678,15 @@ msgstr "Après %s" msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistiques" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statique" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamique" @@ -9678,15 +9694,15 @@ msgstr "dynamique" msgid "partitioned" msgstr "partitionné" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Longueur de ligne" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Taille de la ligne" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Prochain index automatique" @@ -9732,15 +9748,15 @@ msgstr "Ajouter un index SPATIAL" msgid "Add FULLTEXT index" msgstr "Ajouter un index FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Information" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Espace utilisé" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effectif" @@ -9773,7 +9789,7 @@ msgstr "" msgid "Move column" msgstr "Déplacer une colonne" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9782,11 +9798,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:145 msgid "Transformation options" msgstr "Options de transformation" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9798,33 +9814,33 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Données trop longues pour ENUM ou SET ?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Obtenir plus d'espace d'édition" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Aucune" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Tel que défini : " -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "en premier" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "après %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Définition de PARTITION" @@ -10033,7 +10049,7 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Aucune base de données" @@ -10316,29 +10332,29 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Fichiers" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nom du journal binaire" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Position" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Position d'origine" @@ -10346,31 +10362,31 @@ msgstr "Position d'origine" msgid "Character Sets and Collations" msgstr "Jeux de caractères et interclassement" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de données a été supprimée." msgstr[1] "%1$d bases de données ont été supprimées." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistiques sur les bases de données" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Réplication maître" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Réplication esclave" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activer les statistiques" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10440,40 +10456,40 @@ msgstr "Les privilèges ont été rechargés." msgid "Unknown error" msgstr "Erreur inconnue" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Connexion impossible sur le maître %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Impossible de changer le maître" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Le serveur maître est maintenant %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Montrer l'état du maître" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10482,11 +10498,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:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configuration du maître" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10500,19 +10516,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:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Répliquer toutes les bases de données; Ignorer : " -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorer toutes les bases de données; Répliquer : " -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Sélectionnez les bases de données : " -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10520,7 +10536,7 @@ msgstr "" "Maintenant, ajoutez les lignes suivantes à la fin de votre fichier my.cnf " "puis redémarrez le serveur MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10530,84 +10546,84 @@ msgstr "" "suite vous devriez voir un message vous informant que ce serveur est " "configuré comme maître" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave !" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave !" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Montrer l'état de l'esclave" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synchroniser les bases de données avec le serveur maître" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Contrôler le serveur esclave : " -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Démarrer complètement" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Arrêter complètement" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Réinitialiser l'esclave" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Démarrer seulement le fil d'exécution SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Arrêter seulement le fil d'exécution SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Démarrer seulement le fil d'exécution des entrées-sorties" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Arrêter seulement le fil d'exécution des entrées-sorties" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Gestion des erreurs : " -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Ignorer l'erreur courante" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Ignorer les prochaines" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "erreurs." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10616,131 +10632,131 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Gestionnaire" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Cache des requêtes" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Fils d'exécution" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Données temporaires" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Insertions avec délais" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Cache des clés" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Jointures" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Mécanisme de tri" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordonnateur des transactions" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Fermer toutes les tables" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Montrer les tables ouvertes" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Montrer l'état des serveurs esclaves" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Vider la cache des requêtes" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informations sur le serveur" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Toutes les variables d'état" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Surveillance" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Conseiller" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Nombre de points : " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Taux de rafraîchissement : " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtres" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Contenant le mot : " -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Afficher uniquement les valeurs d'alerte" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrer par catégorie..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Afficher les valeurs non formattées" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Liens connexes : " -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Lancer l'analyseur" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Consignes" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10748,7 +10764,7 @@ msgstr "" "Le conseiller peut donner des recommandations au sujet des variables de " "serveur." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10757,7 +10773,7 @@ msgstr "" "Veuillez noter que ce système se base sur de simples calculs et des règles " "de base qui ne s'appliquent pas nécessairement à votre serveur." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10767,7 +10783,7 @@ msgstr "" "(lisez la documentation) et de savoir comment défaire le changement. Un " "réglage incorrect peut affecter négativement la performance." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10778,31 +10794,31 @@ msgstr "" "produite." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Questions depuis le démarrage : %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Information" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ce serveur MySQL fonctionne depuis %1$s. Il a démarré le %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10810,19 +10826,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Ce serveur est un serveur maître dans le processus de réplication." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Ce serveur est un serveur esclave dans le processus de " "réplication." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10830,11 +10846,11 @@ msgstr "" "Pour plus d'information sur l'état de la réplication sur ce serveur, " "consultez la section de réplication." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10843,35 +10859,35 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Reçu" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Envoyé" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Commande" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10879,11 +10895,11 @@ msgstr "" "Le nombre de connexions avortées en raison d'une interruption du client sans " "fermeture adéquate de la connexion." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Le nombre de tentatives de connexion au serveur MySQL infructueuses." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10893,18 +10909,18 @@ msgstr "" "mais qui ont excédé la valeur de binlog_cache_size et ont utilisé un fichier " "temporaire pour stocker les énoncés de la transaction." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Le nombre de transactions qui ont utilisé la cache temporaire du log binaire." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Le nombre de tentatives de connexion (réussies ou non) au serveur MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10917,11 +10933,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10929,7 +10945,7 @@ msgstr "" "Le nombre de tables temporaires en mémoire créées automatiquement par le " "serveur lors de l'exécution d'énoncés." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10937,7 +10953,7 @@ msgstr "" "Le nombre de lignes écrites avec INSERT DELAYED pour lesquels une erreur est " "survenue (probablement un doublon sur la clé)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10945,23 +10961,23 @@ msgstr "" "Le nombre de fils d'exécution utilisés pour INSERT DELAYED. Un fil est " "utilisé pour chacune des tables sur lesquelles un INSERT DELAYED a lieu." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Le nombre de fois qu'une ligne a été supprimée d'une table." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10971,7 +10987,7 @@ msgstr "" "une table portant un certain nom. Ceci est appelé "découverte". Ce " "paramètre indique le nombre de fois que des tables ont été découvertes." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10982,7 +10998,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10990,7 +11006,7 @@ msgstr "" "Le nombre de requêtes pour lire une ligne via une clé. Si élevé, c'est une " "bonne indication que vos tables sont correctement indexées." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11000,7 +11016,7 @@ msgstr "" "Ceci est augmenté si vous interrogez une colonne indexée avec un critère de " "fourchette ou si vous parcourez l'index." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11008,7 +11024,7 @@ msgstr "" "Le nombre de requêtes de lecture de la ligne précédente, en ordre de clé. " "Utilisé surtout pour optimiser ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11021,7 +11037,7 @@ msgstr "" "demandent à MySQL de parcourir des tables en entier, ou vous avez des " "jointures qui n'utilisent pas correctement les clés." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11033,35 +11049,35 @@ msgstr "" "tables ne sont pas correctement indexées ou que vos requêtes ne sont pas " "écrites de façon à tirer parti des index que vous avez définis." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Le nombre de requêtes de mise à jour de lignes dans une table." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Le nombre de requêtes d'insertion de lignes dans une table." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Le nombre de pages de mémoire-tampon qui ont été effacées." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11071,7 +11087,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11083,11 +11099,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11096,7 +11112,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11104,11 +11120,11 @@ msgstr "" "Le nombre de lectures séquentielles effectuées par InnoDB. Ceci survient " "quand InnoDB fait un parcours séquentiel intégral de la table." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Le nombre de requêtes de lectures logiques effectuées par InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11116,7 +11132,7 @@ msgstr "" "Le nombre de lectures que InnoDB n'a pu faire à partir de la réserve, menant " "à une lecture directe d'une page." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11130,51 +11146,51 @@ msgstr "" "Ceci compte le nombre de fois qu'une telle attente a été nécessaire. Si la " "taille de la réserve est adéquate, cette valeur devrait être petite." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Le nombre de pages utilisées pour des opérations «doublewrite»." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11182,35 +11198,35 @@ msgstr "" "Le nombre d'attentes en raison d'un tampon du fichier témoin trop petit; il " "fallait attendre qu'il se libère avant de continuer." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Le nombre d'écritures fsync() sur le fichier témoin." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11219,51 +11235,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente moyen pour acquérir un verrou, en millisecondes." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Le temps total utilisé pour acquérir un verrou, en millisecondes." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Le temps d'attente maximum pour acquérir un verrou, en millisecondes." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Le nombre de fois qu'on a dû attendre pour un verrou." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11272,7 +11288,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11281,7 +11297,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11291,15 +11307,15 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Pourcentage de la cache de clés qui est utilisé (valeur calculée)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Le nombre de requêtes de lecture d'un bloc de clés depuis la cache." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11310,7 +11326,7 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11318,22 +11334,22 @@ msgstr "" "Échecs dans la cache de clés, en calculant le taux de lectures physiques " "comparé aux requêtes de lecture (valeur calculée)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Le nombre de requêtes en vue d'écrire un bloc de clé dans la cache." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Le nombre d'écritures physiques d'un bloc de clés vers le disque." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Pourcentage d'écritures physiques versus les requêtes d'écriture (valeur " "calculée)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11344,18 +11360,18 @@ msgstr "" "pour une même requête. La valeur de 0 indique qu'aucune requête n'a encore " "été compilée." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" "Le nombre maximum de connexions simultanées depuis le démarrage du serveur." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Le nombre de lignes en attente d'écriture (INSERT DELAYED)." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11363,19 +11379,19 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Le nombre de flux de données qui sont ouverts." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11385,19 +11401,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "La quantité de mémoire libre dans la cache de requêtes." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11409,7 +11425,7 @@ msgstr "" "afin de peaufiner la taille de la cache. La stratégie utilisée pour " "déterminer quelles requêtes seront retirées est LRU (least recently used)." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11417,19 +11433,19 @@ msgstr "" "Le nombre de requêtes non en cache (impossible à placer en cache, ou non " "cachée en raison du paramètre query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Le nombre total de blocs dans la cache de requêtes." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "L'état de la réplication sans échec (pas encore implantée)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11437,13 +11453,13 @@ msgstr "" "Le nombre de jointures qui n'ont pas utilisé d'index. Si cette valeur est " "supérieure à 0, vérifiez soigneusement les indexes de vos tables." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Le nombre de jointures qui ont utilisé une recherche par plage sur une table " "de référence." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11452,7 +11468,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11460,19 +11476,19 @@ msgstr "" "Le nombre de jointures qui ont utilisé des plages sur la première table. " "(Normalement non critique même si cette valeur est élevée.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Le nombre de jointures qui ont nécessité le parcours complet de la première " "table." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Le nombre de tables temporaires actuellement ouvertes par le fil d'exécution " "SQL de l'esclave." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11480,11 +11496,11 @@ msgstr "" "Nombre de fois (depuis le démarrage) que le fil d'exécution SQL de l'esclave " "a envoyé à nouveau des transactions." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ceci est à ON si ce serveur est un esclave connecté à un maître." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11492,14 +11508,14 @@ msgstr "" "Le nombre de fils d'exécution dont le temps de création a excédé " "slow_launch_time secondes." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Le nombre de requêtes dont le temps d'exécution a excédé long_query_time " "secondes." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11508,23 +11524,23 @@ msgstr "" "Le nombre d'opérations de fusion effectuées par l'algorithme de tri. Si ce " "nombre est élevé, augmentez la valeur du paramètre sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Le nombre de tri effectués via un parcours de la table." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Le nombre de fois qu'un verrou de table a été acquis immédiatement." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11536,7 +11552,7 @@ msgstr "" "des problèmes de performance, commencez par optimiser vos requêtes, puis " "subdivisez vos tables ou encore utiliser la réplication." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11546,11 +11562,11 @@ msgstr "" "calculé via Nombre de fils / connexion. Si cette valeur est en rouge, vous " "devriez augmenter la taille de cette cache." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11563,47 +11579,47 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Taux de succès de la cache des fils d'exécution (valeur calculée)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Démarrer la surveillance" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Consignes / réglages" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Terminé de modifier les graphiques" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Ajouter un graphique" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Modifier les graphiques" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Colonnes du graphique" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Disposition du graphique" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11611,15 +11627,15 @@ msgstr "" "La disposition du graphique est stockée dans le navigateur. Vous pouvez " "vouloir l'exporter si vous avez une configuration complexe." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Ramener la valeur par défaut" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Consignes pour la surveillance" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11633,7 +11649,7 @@ msgstr "" "slow_query_log ou general_log. Cependant, general_log produit beaucoup de " "données et augmente jusqu'à 15% la charge du serveur" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11645,11 +11661,11 @@ msgstr "" "est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " "utiliser les graphiques de serveur." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Utilisation de la surveillance : " -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11659,7 +11675,7 @@ msgstr "" "pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " "«Paramètres», ou supprimer tout graphique via l'cône de rouage." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11672,11 +11688,11 @@ msgstr "" "statistiques sous forme de requêtes groupées, par la suite vous pouvez " "cliquer sur tout énoncé SELECT pour une analyse plus poussée." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Note : " -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11689,87 +11705,87 @@ msgstr "" "portion de temps et de désactiver general_log puis de vider la table " "correspondante lorsque la surveillance n'est plus requise." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Graphique prédéfini" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variables d'état" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Choisissez les séries : " -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Couramment surveillés" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "ou entrez un nom de variable : " -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Afficher en tant que valeur différentielle" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Appliquer un diviseur" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Ajouter l'unité aux valeurs de données" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Ajouter cette série" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Effacer la série" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Séries dans le graphique : " -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Statistiques des journaux" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Sélectionnez un intervalle de temps : " -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Enlever les données variables des énoncés INSERT pour un meilleur groupement" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Choisissez depuis quel journal les statistiques doivent être générées." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Les résultats sont regroupés par le texte des requêtes." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analyseur de requêtes" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d secondes" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11887,19 +11903,19 @@ msgstr "" "La base de données cible sera complètement synchronisée avec la base source. " "La base source ne sera pas modifiée." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Échec de mise à jour de la variable" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variables et paramètres du serveur" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valeur pour la session" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valeur globale" @@ -12089,8 +12105,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" -"%s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" +"s." #: setup/lib/index.lib.php:296 msgid "" @@ -12142,8 +12158,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " -"%d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" +"d)." #: setup/lib/index.lib.php:306 #, php-format @@ -12162,8 +12178,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" -"%s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" +"s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:310 #, php-format @@ -12173,8 +12189,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " -"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" +"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." @@ -12238,42 +12254,42 @@ msgstr "" msgid "Wrong data" msgstr "Données incorrectes" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Le signet «%s» a été utilisé comme requête par défaut." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Généré par" -#: sql.php:1147 +#: sql.php:1193 #, 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:1179 +#: sql.php:1225 msgid "Label" msgstr "Intitulé" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Les colonnes ont été déplacées avec succès." @@ -12404,16 +12420,16 @@ msgstr "Modifier l'index" msgid "Index name:" msgstr "Nom de l'index : " -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Type d'index : " -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Ajouter à l'index %s colonne(s)" @@ -12579,38 +12595,38 @@ msgstr "Exporter en tant que %s" msgid "Show versions" msgstr "Montrer les versions" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Désactiver le suivi de %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Activer le suivi de %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Activer maintenant" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Créer la version %1$s de %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants : " -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants : " -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Créer une version" @@ -13000,8 +13016,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Le ratio actuel de mémoire libre pour la cache de requêtes par rapport à la " "mémoire totale de la cache est de %s%%. Il devrait se situer à plus de 80%%" @@ -13072,9 +13088,9 @@ msgid "" "The ratio of removed queries to inserted queries is %s%%. The lower this " "value is, the better (This rules firing limit: 0.1%%)" msgstr "" -"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s" -"%%. Il est souhaitable que cette valeur soit faible (Limite pour cette " -"règle: 0.1%%)" +"Le ratio des requêtes enlevées par rapport aux requêtes ajoutées est de %s%" +"%. Il est souhaitable que cette valeur soit faible (Limite pour cette règle: " +"0.1%%)" #: libraries/advisory_rules.txt:188 msgid "Query cache max size" @@ -13153,8 +13169,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de tous les tris causent la création de tables temporaires, cette " "valeur devrait être sous les 10%%." @@ -13685,8 +13701,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections est à %s%% de max_connections, devrait être sous les " -"80%%" +"Max_used_connections est à %s%% de max_connections, devrait être sous les 80%" +"%" #: libraries/advisory_rules.txt:392 msgid "Percentage of aborted connections" diff --git a/po/gl.po b/po/gl.po index 1fc6051164..973fabc527 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-23 20:21+0200\n" "Last-Translator: Julio Guerra \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: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Número de páxina:" @@ -39,36 +39,36 @@ msgstr "" "xanela pai ou porque as opcións de seguranza do seu navegador están a " "bloquear as actualizacións entre xanelas." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Buscar" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Buscar" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Ir" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descrición" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Usar este valor" @@ -119,18 +119,18 @@ msgstr "Creouse a base de datos %1$s." msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Comentarios da táboa" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Columna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Nulo" msgid "Default" msgstr "Predeterminado" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Predeterminado" msgid "Links to" msgstr "Liga a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Liga a" msgid "Comments" msgstr "Comentarios" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Non" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Si" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "Ver o envorcado (esquema) da base de datos" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Non foi posíbel atopar ningunha táboa na base de datos." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Escoller todo" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Anular a selección de todo" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "O nome da base de datos está baleiro!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "A base de datos %1$s foi renomeada a %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de datos %1$s foi copiada a %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgstr "" "Desactivouse a configuración de almacenamento de phpMyAdmin. Para saber por " "que prema %saquí%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "Táboa" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Filas" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Tamaño" @@ -344,7 +344,7 @@ msgstr "en uso" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creación" @@ -352,7 +352,7 @@ msgstr "Creación" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Última actualización" @@ -360,7 +360,7 @@ msgstr "Última actualización" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Última revisión" @@ -375,7 +375,7 @@ msgstr[1] "%s táboas" msgid "You have to choose at least one column to display" msgstr "Debe escoller cando menos unha columna para mostrar" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar ao %sconstrutor visual%s" @@ -407,9 +407,9 @@ msgstr "Táboas seguidas" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Base de datos" @@ -427,66 +427,66 @@ msgstr "Actualizada" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Estado" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Acción" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostrar" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Eliminar os datos de seguimento desta táboa" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "activado" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "desactivado" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versións" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Informe de seguimento" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Seguir a táboa" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Rexistro de actividade da base de datos" @@ -502,12 +502,12 @@ msgstr "Gardouse nun ficheiro o tipo de exportación escollida!" msgid "Bad parameters!" msgstr "Os parámetros son incorrectos!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o envorcado no ficheiro %s." @@ -529,117 +529,124 @@ msgstr "Gardouse o envorcado no ficheiro %s." msgid "Invalid export type" msgstr "Este tipo de exportación non é válido" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para a columna «%s»" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Xeometría" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Engadir un punto" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Cadea de liñas" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Círculo externo" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Círculo interno" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Engadir unha cadea de liñas" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Engadir un círculo interno" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Engadir un polígono" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Engadir xeometría" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Escolla «GeomFromText» na columna «Función» e apegue a cadea situada embaixo " "no campo «Valor»" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Eliminouse o marcador." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Non foi posíbel ler o ficheiro" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -648,7 +655,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:400 +#: import.php:404 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 " @@ -659,28 +666,28 @@ msgstr "" "Consulte a [a@./Documentation.html#faq1_16@Documentation]Pregunta frecuente " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Non se pode converter o xogo de caracteres do ficheiro sen a biblioteca " "correspondente" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Non foi posíbel importar os engadidos - Comprobe a instalación!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "A importación rematou sen problemas. Executáronse %d consultas." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -688,7 +695,7 @@ msgstr "" "Excedeuse o tempo de espera do script. Se quere rematar a importación, " "envíe de novo o mesmo ficheiro e a importación continuará." -#: import.php:513 +#: import.php:517 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." @@ -697,9 +704,9 @@ msgstr "" "significa que o phpMyAdmin non poderá rematar esta importación a non ser que " "se lle incrementen os límites de tempo de php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "A consulta de SQL executouse sen problemas" @@ -713,7 +720,7 @@ msgstr "Recuar" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes «DROP DATABASE»." @@ -722,7 +729,7 @@ msgstr "Non se permiten as ordes «DROP DATABASE»." msgid "Do you really want to execute \"%s\"?" msgstr "Seguro que quere executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!" @@ -764,7 +771,7 @@ msgstr "Engadir un índice" msgid "Edit Index" msgstr "Editar o índice" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Engadir %d columna(s) ao índice" @@ -814,24 +821,24 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Gráfico de tráfico en directo" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Gráfica de conexións/procesos en directo" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Gráfico de consultas en directo" @@ -841,24 +848,24 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -878,7 +885,7 @@ msgstr "Tráfico do servidor (en KiB)" msgid "Connections since last refresh" msgstr "Conexións desde a última anovación" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesos" @@ -896,7 +903,7 @@ msgstr "Preguntas dende a última anovación" msgid "Questions (executed statements by the server)" msgstr "Preguntas (instrucións executadas polo servidor)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Estatísticas das consultas" @@ -942,13 +949,13 @@ msgstr "Arquivo de intercambio do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1000,32 +1007,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Conexións" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1039,11 +1046,11 @@ msgstr "%d táboa(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Configuración" @@ -1064,12 +1071,12 @@ msgid "Please add at least one variable to the series" msgstr "Engada ao menos unha variábel á serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ningunha" @@ -1169,7 +1176,7 @@ msgstr "Cambiar a configuración" msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Título da gráfica" @@ -1257,7 +1264,7 @@ msgstr "Explicar a saída" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tempo" @@ -1354,8 +1361,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1566,12 +1573,12 @@ msgstr "Tempo de execución da consulta" msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Gardar" @@ -1628,8 +1635,8 @@ msgstr "Resultados da consulta" msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorar" @@ -1738,7 +1745,7 @@ msgstr "Mostrar fila(s) de datos" msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Xerar" @@ -1837,63 +1844,63 @@ msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dec" @@ -1931,32 +1938,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sá" @@ -2074,16 +2081,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "por hora" @@ -2100,7 +2107,7 @@ msgstr "Tamaño máximo: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentación" @@ -2123,14 +2130,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Houbo un erro" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "consulta de SQL" @@ -2148,210 +2155,210 @@ msgstr "consulta de SQL" msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Non foi posíbel conectar cun válidador de SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar o SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Omitir a explicación de SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Sen código PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Enviar esta consulta" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Anovar" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Omitir a válidacion de" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar o SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Edición na liña desta consulta" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Na liña" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Análise do desempeño" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Do" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parámetro que falta:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Ir á base de datos "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Prema para conmutar" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserir" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Visualizar" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacións" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Examinar o computador:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Non é posíbel acceder ao directorio que designou para os envíos" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Non hai arquivos para subir" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Baleirar" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimir" @@ -2370,105 +2377,105 @@ msgstr "" msgid "Font size" msgstr "Tamaño da letra" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descendente" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordenar" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criterio" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Engadir/Eliminar filas de criterio" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Engadir/Eliminar columnas de campo" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Actualizar a consulta" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Usar as táboas" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ou" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "E" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Inserir" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Eliminar" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificar" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Consulta tipo SQL na base de datos %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "cando menos unha das palabras" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "todas as palabras" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "a frase exacta" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "como expresión regular" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Buscar os resultados para «%s» %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s ocorrencia" msgstr[1] "Total: %s ocorrencias" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2477,44 +2484,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s ocorrencia dentro da táboa %2$s" msgstr[1] "%1$s ocorrencias dentro da táboa %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Eliminar as coincidencias para a táboa %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Eliminar" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Buscar na base de datos" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras ou valores que buscar (ou comodín é: «%»):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Atopar:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "As palabras divídense cun carácter de espazo (« »)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dentro das táboas:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dentro da columna:" @@ -2559,8 +2566,8 @@ msgstr "Cabeceiras cada %s filas" msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2637,7 +2644,7 @@ msgid "The row has been deleted" msgstr "Eliminouse a fileira" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Matar (kill)" @@ -2656,11 +2663,11 @@ msgstr "na consulta" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2670,7 +2677,7 @@ msgstr "A mostrar as fileiras" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "a consulta levou %01.4f segundos" @@ -2681,7 +2688,7 @@ msgstr "a consulta levou %01.4f segundos" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Cos marcados:" @@ -2691,8 +2698,8 @@ msgstr "Cos marcados:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Marcalos todos" @@ -2730,17 +2737,17 @@ msgstr "Non se atopou a ligazón" msgid "Too many error messages, some are not displayed." msgstr "Houbo demasiadas mensaxes de erro; algunhas non se mostran." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "O ficheiro non foi subido como un ficheiro." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2748,27 +2755,27 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Non foi posíbel escribir no disco." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa da extensión." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Produciuse un erro descoñecido ao enviar o ficheiro." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2776,11 +2783,11 @@ msgstr "" "Produciuse un erro ao mover o ficheiro enviado. Consulte a [a@./" "Documentation.html#faq1_11@Documentation]Pregunta frecuente 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Produciuse un erro ao mover o ficheiro subido." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Non é posíbel ler (movido) o ficheiro subido." @@ -2789,66 +2796,66 @@ msgstr "Non é posíbel ler (movido) o ficheiro subido." msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript debe estar activo a partir de aquí" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Non se definiu ningún índice!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Orde alfabética" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comentario" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Eliminouse a chave primaria" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Eliminouse o índice %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2859,12 +2866,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bases de datos" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" @@ -2932,18 +2939,18 @@ msgstr "Usuarios" msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Rexistro binario" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicación" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variábeis" @@ -3081,8 +3088,8 @@ msgstr "" "persistentes despois de anovar esta páxina. Comprobe se se modificou a " "estrutura da táboa." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Función" @@ -3092,11 +3099,11 @@ msgstr "Función" msgid "Operator" msgstr "Operador" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valor" @@ -3104,62 +3111,62 @@ msgstr "Valor" msgid "Table Search" msgstr "Busca na táboa" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Editar/Inserir" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Escolla os campos (mínimo un):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Engada condicións de busca (o corpo da cláusula «WHERE»):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Número de filas por páxina" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Mostrar en orde:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Empregue esta columna para etiquetar cada punto" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Máximo de filas que aparecen na gráfica" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Criterios adicionais de busca" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Facer unha «consulta de exemplo» (o comodín é «%») para dúas columnas " "diferentes" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faga unha «consulta por exemplo» (o comodín é «%»)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Examinar/Editar os puntos" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Como usar" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Restaurar a ampliación" @@ -3232,14 +3239,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3492,7 +3499,7 @@ msgstr "compartida" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Táboas" @@ -3506,12 +3513,12 @@ msgstr "Táboas" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "De máis (Overhead)" @@ -3619,7 +3626,7 @@ msgstr "Abrir" msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3757,22 +3764,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Esta preferencia está desactivada; non se aplicará á súa configuración" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Pór como valor: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaurar o valor por omisión" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permitir que os usuarios personalicen este valor" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reiniciar" @@ -4071,7 +4078,7 @@ msgstr "Conxunto de caracteres do ficheiro" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formato" @@ -4180,7 +4187,7 @@ msgstr "Chave da etiqueta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipo MIME" @@ -4216,7 +4223,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Encerrar os nomes das táboas e das columnas entre aspas invertidas" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modo de compatiblidade de SQL" @@ -5818,10 +5825,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Require que o válidador SQL estea activado" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6098,7 +6105,7 @@ msgstr "Falta a extensión %s. Comprobe a configuración do PHP." msgid "possible deep recursion attack" msgstr "posible ataque tipo deep recursion" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6106,47 +6113,55 @@ msgstr "" "O servidor non responde (ou o socket local do servidor non se configurou " "correctamente)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "O servidor non responde." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Comprobe os privilexios do directorio que contén a base de datos." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalles..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Fallou a conexión para controluser tal e como se define na súa configuración." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Trocar o contrasinal" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sen contrasinal" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Reescribir" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hash do contrasinal" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatíbel con MySQL 4.0" @@ -6277,8 +6292,8 @@ msgstr ", @TABLE@ será o 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "empregar cadeas de formato de tempo. Produciranse transformacións en " @@ -6360,7 +6375,7 @@ msgstr "Crear versión %1$s de %2$s" msgid "authored on %1$s by %2$s" msgstr "Crear versión %1$s de %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6370,33 +6385,33 @@ msgstr "" "permitido ou este é un erro coñecido dos navegadores baseados en webkit " "(Safari, Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s de %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Subindo o arquivo a importar..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/seg." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Sobre %MIN min. %SEC seg. restantes." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Sobre %SEC seg. restantes." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Estase a procesar o ficheiro; teña paciencia, por favor." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6404,30 +6419,30 @@ msgstr "" "Teña paciencia, estase a enviar o ficheiro. Os detalles sobre o envío non " "están dispoñíbeis." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "A importar ao servidor actual" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "A importar na base de datos «%s»" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "A importar na táboa «%s»" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Ficheiro que importar:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "O ficheiro pode estar comprimido (%s) ou descomprimido." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6516,71 +6531,71 @@ msgstr "" "Tamaño da memoria intermedia que usa InnoDB para gardar provisoriamente os " "datos e índices das súas táboas." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Estado de InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Uso da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "páxinas" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Páxinas libres" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Páxinas suxas" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Páxinas con datos" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Páxinas que se eliminarán" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Páxinas ocupadas" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Páxinas fechadas" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Actividade da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Solicitudes de lectura" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Solicitudes de escrita" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Fallos de lectura" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Esperas para escribir" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Fallos de lectura en %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Esperas para escribir en %" @@ -6816,8 +6831,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pódese atopar documentación e información adicional sobre PBXT na %sPáxina " "de PrimeBase XT %s." @@ -6834,126 +6849,126 @@ msgstr "O Blogue de PrimeBase XT de Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización de GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Ver o contido dunha estrutura premendo o seu nome" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Mudar calquera destas opcións premendo a ligazón «Opcións» correspondente" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Editar a estrutura seguindo a ligazón «Estrutura»" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Ir á base de datos: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Editar a configuración de %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Ir á táboa: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Estrutura de %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Ir á vista: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Agochar" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Por causa da súa lonxitude,
este campo pode non ser editábel" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binario - non editar" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Inserir como fila nova e ignorar os erros" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Mostrar a consulta de inserción" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Volver para páxina anterior" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Volver para esta páxina" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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 frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -6997,7 +7012,7 @@ msgstr "Engadir un prefixo á táboa" msgid "Add prefix" msgstr "Engadir un prefixo" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Está realmente seguro de executar a seguinte petición?" @@ -7284,7 +7299,7 @@ msgstr "Opcións da táboa" msgid "Rename table to" msgstr "Mudar o nome da táboa para" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Motor de almacenamento" @@ -7398,8 +7413,8 @@ msgstr "Reciba a benvida a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7480,21 +7495,21 @@ msgstr "O usuario ou o contrasinal están errados. Denegouse o acceso." msgid "Can not find signon authentication script:" msgstr "Non foi posíbel atopar o script de autenticación de entrada:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "O ficheiro %s non contén ningún identificador de chave" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Fallou a autenticación do hardware" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Non se meteu ningunha chave de autenticación válida" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "A autenticar..." @@ -7631,20 +7646,21 @@ msgstr "Mostrar os tipos MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Xerado en" @@ -7907,7 +7923,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "O número de columnas é incorrecto na entrada do CSV na liña %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nome da táboa" @@ -8167,7 +8183,7 @@ msgstr "Creación de PDF" msgid "Displaying Column Comments" msgstr "A mostrar os comentarios das columnas" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformación do navegador" @@ -8239,7 +8255,7 @@ msgstr "Quitarlles as marcas a todos" msgid "Slave configuration" msgstr "Configuración do escravo" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Mudar ou reconfigurar o servidor principal" @@ -8253,8 +8269,8 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8274,15 +8290,15 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variábel" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Identificador do servidor" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8290,17 +8306,17 @@ 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:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Calquera usuario" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8309,27 +8325,27 @@ msgstr "Calquera usuario" msgid "Use text field" msgstr "Empregar un campo de texto" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Empregar a táboa Host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8338,7 +8354,7 @@ msgstr "" "Cando se emprega a táboa Host, ignórase este campo e no seu canto empréganse " "os valores almacenados na táboa Host." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Xerar un contrasinal" @@ -8397,7 +8413,7 @@ msgstr "Detalles" msgid "Event name" msgstr "Nome do acontecemento" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tipo de acontecemento" @@ -8739,7 +8755,7 @@ msgstr "Non se atopou ningún acontecemento co nome %1$s na base de datos %2$s" msgid "There are no events to display." msgstr "Non hai acontecementos que mostrar." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8748,7 +8764,7 @@ msgstr "Non hai acontecementos que mostrar." msgid "The %s table doesn't exist!" msgstr "Non existe a táboa %s!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8794,91 +8810,91 @@ msgstr "Atributos" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Crear unha páxina" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nome da páxina" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Distribución automática baseada en" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relacións internas" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "CHAVE EXTERNA" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Escolla unha páxina para modificar" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Escoller unha páxina" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Escoller táboas" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nomes das columnas" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Mostrar o esquema relacional" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Escoller o tipo de exportación relacional" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostrar a grella" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostrar a cor" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostrar a dimensión das táboas" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostrar todas as táboas co mesmo largo" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dicionario de datos" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Só as chaves coñecidas" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Horizontal" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Vertical" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientación" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Tamaño do papel" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8886,7 +8902,7 @@ msgstr "" "Esta páxina ten referencias a táboas que xa non existen. Quere eliminar esas " "referencias?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Conmutar o borrador" @@ -9184,7 +9200,7 @@ msgstr "Usuarios que teñen acceso a "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Usuario" @@ -9324,8 +9340,8 @@ msgstr "Vista xeral dos 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 " @@ -9386,11 +9402,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Marcar esta busca de SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -9487,7 +9503,7 @@ msgstr "" "Non foi posíbel iniciar o validador de SQL. Comprobe que ten instalados " "todos os engadidos de php tal e como se describe na %sdocumentación%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Baleirouse a táboa %s" @@ -9500,12 +9516,12 @@ msgstr "O seguimento está activado." msgid "Tracking is not active." msgstr "O seguimento non está activado." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" @@ -9533,14 +9549,14 @@ msgid "Column %s has been dropped" msgstr "Eliminouse a columna %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaria" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Índice" @@ -9550,7 +9566,7 @@ msgid "Spatial" msgstr "Espacial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Texto completo" @@ -9576,7 +9592,7 @@ msgstr "Vista das relacións" msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Debe engadir ao menos unha columna." @@ -9584,7 +9600,7 @@ msgstr "Debe engadir ao menos unha columna." msgid "Add column" msgstr "Engadir unha columna" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Engadir %s columna(s)" @@ -9607,15 +9623,15 @@ msgstr "Despois de %s" msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columnas" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Estatísticas das fileiras" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "estáticas" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinámicas" @@ -9623,15 +9639,15 @@ msgstr "dinámicas" msgid "partitioned" msgstr "particionado" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Lonxitude das fileiras" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Tamaño das fileiras" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Índice automático seguinte" @@ -9679,15 +9695,15 @@ msgstr "Engadir un índice SPATIAL" msgid "Add FULLTEXT index" msgstr "Engadir un índice FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Información" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Uso do espazo" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efectivo" @@ -9722,7 +9738,7 @@ msgstr "" msgid "Move column" msgstr "Eliminar columna(s)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9731,11 +9747,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 das transformacións%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcións de transformación" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9747,34 +9763,34 @@ msgstr "" "(«\\\") ou aspas simples («'\") entre estes valores, precédaos de barra para " "tras (por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Son os datos ENUM ou SET demasiados longos?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Obter máis espazo de edición" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Ningún" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Como se define:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "Primeiro" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Despois de %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" @@ -9979,10 +9995,10 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na " -"%sdocumentation%s." +"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na %" +"sdocumentation%s." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Non hai ningunha base de datos" @@ -10222,8 +10238,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o " -"%sScript de configuración%s." +"Pode configurar máis opcións modificando config.inc.php, p.ex. usando o %" +"sScript de configuración%s." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -10262,29 +10278,29 @@ msgstr "Ese ficheiro non existe" msgid "Select binary log to view" msgstr "Escolla o ficheiro de rexistro binario que desexe ver" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Interromper as consultas mostradas" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostrar as consultas completas" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nome do ficheiro de rexistro" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posición" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posición orixinal" @@ -10292,31 +10308,31 @@ msgstr "Posición orixinal" msgid "Character Sets and Collations" msgstr "Conxuntos de caracteres e Ordes alfabéticas" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Elimináouse %1$d base de datos sen problemas." msgstr[1] "Elimináronse %1$d bases de datos sen problemas." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Estatísticas das bases de datos" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replicación do principal" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replicación do escravo" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activar as estatísticas" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10386,41 +10402,41 @@ msgstr "Non houbo problemas ao recargar os privilexios." msgid "Unknown error" msgstr "Produciuse un erro descoñecido" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Foi imposíbel conectar co principal %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Foi imposíbel mudar de principal" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "O servidor principal mudouse con éxito a %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Mostrar o estado do principal" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10429,11 +10445,11 @@ msgstr "" "Este servidor non está configurado como principal nun proceso de " "replicación. Desexa configuralo?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configuración do principal" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10447,19 +10463,19 @@ msgstr "" "ignorar todas as bases de datos por omisión e permitir que se repliquen só " "algunhas. Seleccione o modo:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas as bases de datos. Ignorar:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas as bases de datos. Replicar:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Escolla as bases de datos:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10467,7 +10483,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:260 +#: server_replication.php:287 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 " @@ -10477,83 +10493,83 @@ msgstr "" "debería ver unha mensaxe que informa de que este servidor está " "configurado como principal" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "O fío escravo de SQL non está funcionando!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "O fío escravo de E/S non está funcionando!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Ver a táboa de estado do escravo" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sincronizar as bases de datos co principal" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Escravo de control:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Inicio completo" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Detención completa" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reiniciar o escravo" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Iniciar só o fío de SQL %s" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Parar só o fío de SQL %s" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Iniciar só o fío de E/S %s" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Parar só o fío de E/S %s" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Xestión de erros:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Omitir os erros podería conducir a que o principal e o escravo non estean " "sincronizados!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Omitir este erro" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Omitir os seguintes" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "erros." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10562,12 +10578,12 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10575,121 +10591,121 @@ msgstr "" "O phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea " "fechado." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Manipulador" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Caché de consultas" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Fíos" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Datos temporais" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Caché de chaves" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Unións" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordinador de transaccións" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Limpar a caché de consultas" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Información sobre o tempo de execución" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Todas as variables de estado" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Vixiar" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Consellos" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Número de filas:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Taxa de refresco: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtros" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Que conteñan a palabra:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Mostrar só valores de alerta" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrar pola categoría..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Mostrar os valores sen formato" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Ligazóns relacionadas:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Executar o analizador" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instrucións" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10697,7 +10713,7 @@ msgstr "" "O sistema de consellos pode darlle valores recomendados para as variábeis do " "servidor analizando as variábeis de estado do servidor." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10707,7 +10723,7 @@ msgstr "" "cálculos simples e pola conta da vella que poden non corresponder co seu " "sistema." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10717,7 +10733,7 @@ msgstr "" "cambiar (lendo a documentación) e como desfacer os cambios. Uns axustes " "erróneos poder ter un efecto moi negativo sobre o desempeño." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10728,31 +10744,31 @@ msgstr "" "se apreciaron melloras medíbeis." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas desde o inicio: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Instrucións" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "nº" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico da rede desde o inicio: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor de MySQL leva funcionando %1$s. Iniciouse ás %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10760,18 +10776,18 @@ msgstr "" "Este servidor funciona como mestre e escravo nun proceso de " "replicación." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor funciona como mestrenun proceso de replicación." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor funciona como escravo nun proceso de replicación." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10779,11 +10795,11 @@ msgstr "" "Para máis información acerca do estado de replicación do servidor visite a " "sección sobre replicación." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10792,35 +10808,35 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Recibido" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Enviado" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "Identificador" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Orde" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10828,11 +10844,11 @@ msgstr "" "O número de conexións que se cancelaron porque o cliente morreu sen fechar " "axeitadamente a conexión." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de intentos de conexión co servidor de MySQL falidos." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10842,18 +10858,18 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron a caché do rexistro binario." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexión (satisfactorias ou non) co servidor de " "MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10865,11 +10881,11 @@ msgstr "" "que incremente o valor de tmp_table_size para que as táboas temporais se " "baseen na memoria no canto de no disco." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10877,7 +10893,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10885,7 +10901,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sufriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10893,23 +10909,23 @@ msgstr "" "Número de fíos de manipulación INSERT DELAYED en uso. Cada táboa diferente " "na que se utiliza INSERT DELAYED recibe o seu propio fío." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Número de veces que se eliminou unha fileira dunha táboa." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10919,7 +10935,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descubriron táboas." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10930,7 +10946,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10938,7 +10954,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as consultas e táboas están ben indexadas." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10948,7 +10964,7 @@ msgstr "" "increméntase se está a procurar unha columna de índice cunha limitación de " "intervalo ou se está a examinar un índice." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10956,7 +10972,7 @@ msgstr "" "Número de peticións para ler a fileira anterior na orde da chave. Este " "método de lectura utilízase sobre todo para optimizar ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10968,7 +10984,7 @@ msgstr "" "Posibelmente terá un monte de consultas que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10980,35 +10996,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas consultas non están " "escritas para aproveitar os índices de que dispón." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK («desfacer») interno." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Número de peticións para actualizar unha fileira nunha táboa." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Número de peticións para inserir un ficheiro nunha táboa." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Número de páxinas que conteñen datos (suxos ou limpos)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do buffer que se pediu que se limpasen." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11018,7 +11034,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11030,20 +11046,20 @@ msgstr "" "tamén se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do buffer, en páxinas." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece " -"cando unha consulta vai examinar unha porción grande dunha táboa mais en " -"orde aleatoria." +"Número de pre-lecturas «aleatorias» iniciadas por InnoDB. Isto acontece cando " +"unha consulta vai examinar unha porción grande dunha táboa mais en orde " +"aleatoria." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11051,11 +11067,11 @@ msgstr "" "Número de pre-lecturas secuenciais iniciadas por InnoDB. Isto acontece cando " "InnoDB realiza un exame secuencial completo dunha táboa." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Número de peticións de lectura lóxicas feitas por InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11063,7 +11079,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do buffer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11077,55 +11093,55 @@ msgstr "" "que esperar. Se o tamaño do buffer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no buffer de InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Número de escritas duplas realizadas e número de páxinas escritas con este " "propósito." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11133,35 +11149,35 @@ msgstr "" "Número de esperas debidas a que o buffer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas de fsync() feitas no ficheiro de rexistro." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11170,55 +11186,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convertan doadamente " "en bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Número de bloqueo de fileiras polos que se está a agardar agora mesmo." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Tempo que, de media, leva adquirir un bloqueo sobre unha fileira, en " "milisegundos." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Tempo total empregado na adquisición de bloqueos sobre as fileiras, en " "milisegundos." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Tempo máximo en adquirir un bloqueo de fileira, en milisegundos." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Número de veces que houbo que agardar polo bloqueo dunha fileira." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11226,7 +11242,7 @@ msgstr "" "Número de bloques chave na caché de chaves que se mudaron mais que aínda non " "se limparon para o disco. Antes era Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11234,7 +11250,7 @@ msgstr "" "Número de bloques sen utilizar na caché de chaves. Pode utilizar este valor " "para determinar canta caché de chave está en uso." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11244,17 +11260,17 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaxe de uso do límite de ficheiros abertos" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Número de peticións para ler un bloque chave da caché." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11264,26 +11280,26 @@ msgstr "" "grande, é que, posiblemente, o valor de key_fuffer_size é demasiado baixo. A " "relación de perdas da caché pódese calcular así: Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Número de peticións para escribir un bloque chave na caché." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Número de escritas físicas dun bloque chave no disco." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11294,7 +11310,7 @@ msgstr "" "procura diferentes para a mesma consulta. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11302,13 +11318,13 @@ msgstr "" "O número máximo de conexións que teñen estado en uso simultaneamente desde " "que se iniciou o servidor." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de consultas que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11316,19 +11332,19 @@ msgstr "" "O número de táboas abertas en total. Se a cantidade é grande, o valor da " "caché de táboas posibelmente é demasiado pequeno." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "O número de ficheiros abertos." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "O número de fluxos abertos (utilizado principalmente para o rexistro)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "O número de táboas abertas." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11338,19 +11354,19 @@ msgstr "" "altos poden indicar problemas de fragmentación, que se poden resolver " "enviando unha instrución FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "A cantidade de memoria libre para a caché de consultas." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "O número de impactos na caché." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "O número de consultas engadidas á caché." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11363,7 +11379,7 @@ msgstr "" "utilizado menos recentemente (LRU) para decidir que consultas debe eliminar " "da caché." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11371,19 +11387,19 @@ msgstr "" "O número de consultas non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "O número de consultas rexistradas na caché." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "O número total de bloques na caché de consultas." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "O estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11391,13 +11407,13 @@ msgstr "" "O número de unións que non utilizan índices. Se este valor non for 0, " "debería comprobar con atención os índices das táboas." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11406,7 +11422,7 @@ msgstr "" "de cada fila (se non é 0, debería comprobar con atención os índices das " "táboas)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11414,15 +11430,15 @@ msgstr "" "O número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "O número de unións que realizaron un exame completo da primeira táboa." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "O número de táboas temporais abertas actualmente polo fío SQL escravo." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11430,11 +11446,11 @@ msgstr "" "O número total de veces (desde o inicio) que o fío de replicación SQL " "escravo reintentou as transaccións." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto está ON se este servidor é un escravo conectado a un máster." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11442,14 +11458,14 @@ msgstr "" "O número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "O número de consultas ás que lles levou máis segundos dos indicados en " "long_query_time." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11459,23 +11475,23 @@ msgstr "" "Se este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenacións feitas con intervalos." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "O número de fileiras ordenadas." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenacións realizadas examinando a táboa." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "O número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11487,7 +11503,7 @@ msgstr "" "desempeño, debería en primeiro lugar mellorar as consultas e despois, ora " "partir a táboa ou táboas, ora utilizar a replicación." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11497,11 +11513,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "O número de conexións abertas neste momento." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11513,49 +11529,49 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaxe de caché de fíos %%" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "O número de fíos que non están a durmir." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Iniciar o vixilante" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instrucións/Configuración" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Rematou a redistribución/edición das gráficas" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Engadir unha gráfica" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Redistribuír/editar as gráficas" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Taxa de anovación" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Columnas da gráfica" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Ordenación das gráficas" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11563,15 +11579,15 @@ msgstr "" "A distribución das gráficas almacénase no almacenamento local do navegador. " "Pode resultar útil exportala se a configuración é complicada." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Restabelecer o predeterminado" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instrucións de monitorización" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11585,7 +11601,7 @@ msgstr "" "general_log. Lembre, porén, que general_log produce moitos datos e " "incrementa a carga do servidor nun 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11597,11 +11613,11 @@ msgstr "" "phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " "Porén, pode tamén empregar a funcionalidade de gráficas do servidor." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Uso do monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11612,7 +11628,7 @@ msgstr "" "eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " "respectiva." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11625,11 +11641,11 @@ msgstr "" "consultas agrupadas na que se pode premer calquera instrución SELECT que " "apareza para analizala máis polo miúdo." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Por favor note:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11642,88 +11658,88 @@ msgstr "" "un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " "se requira máis esa vixilancia." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Gráfica predefinida" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variábel/eis de estado" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Escoller unha serie:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Vixilancias frecuentes" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "ou escriba o nome da variábel:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Mostrar como valor diferencial" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Engadir a unidade aos valores dos datos" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Engadir esta serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Limpar esta series" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Series na gráfica:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Estatísticas de rexistro" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Intervalo temporal escollido:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Os resultados están agrupados polo texto da consulta." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analizador de consultas" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11842,19 +11858,19 @@ msgstr "" "A base de datos de destino sincronizarase completamente coa base de datos de " "orixe. A base de datos de orixe ficará sen alteracións." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Fallou a configuración da variábel" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variábeis e configuración do servidor" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valor da sesión" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valor global" @@ -12133,8 +12149,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se pensa que é preciso, empregue opcións de protección adicionais - " -"%sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " +"Se pensa que é preciso, empregue opcións de protección adicionais - %" +"sautenticación do servidor%s e %slista de proxies de confianza%s. Porén, a " "protección baseada no IP pode non ser de fiar se o IP pertence a un ISP ao " "que estean ligados miles de usuarios, incluído vostede." @@ -12197,42 +12213,42 @@ msgstr "" msgid "Wrong data" msgstr "Os datos son incorrectos" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Resultado de SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Xerado por" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa «%s»" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12365,17 +12381,17 @@ msgstr "Editar o índice" msgid "Index name:" msgstr "Nome do índice:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipo de índice:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Engadir ao índice  %s coluna(s)" @@ -12541,38 +12557,38 @@ msgstr "Exportar como %s" msgid "Show versions" msgstr "Mostrar as versións" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar o seguemento para %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Desactivar agora" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Activar o seguemento para %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Activar agora" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Seguir estas instrucións de definición de datos:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Seguir estas instrucións de manipulación de datos:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Crear unha versión" @@ -12679,8 +12695,8 @@ msgstr "" #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" -"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s" -"%%." +"A taxa de consultas lentas deberían estar por debaixo do 5%% e o valor é %s%" +"%." #: libraries/advisory_rules.txt:70 msgid "Slow query rate" @@ -12885,8 +12901,8 @@ msgid "" msgstr "" "Sábese que a caché de consultas mellora moito o desempeño se se configura " "axeitadamente. Actívea configurando {query_cache_size} a un valor de MiB de " -"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se " -"vai empregar memcached, ignore esta recomendación." +"dous díxitos e configurando {query_cache_type) como «ON». Nota: Se vai " +"empregar memcached, ignore esta recomendación." #: libraries/advisory_rules.txt:151 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" @@ -12964,8 +12980,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "A relación actual da memoria da caché de consultas e o tamaño total da caché " "de consultas é de %s%%. Debería superar o 80%%" @@ -13120,8 +13136,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todos os ordenamentos causan táboas temporais; este valor debería " "estar por debaixo do 10%%." diff --git a/po/he.po b/po/he.po index 8baeb0a5a8..4b13fc662f 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: hebrew \n" -"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "הצגת הכול" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "מספר העמוד:" @@ -38,36 +38,36 @@ msgstr "" "לא ניתן לעדכן את חלון דפדפן היעד. יתכן שסגרת את חלון ההורה, או שהגדרות " "האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "חיפוש" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "חיפוש" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "ביצוע" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "שם מפתח" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "תיאור" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "שימוש בערך זה" @@ -117,18 +117,18 @@ msgstr "מסד הנתונים %1$s נוצר." msgid "Database comment: " msgstr "הערה על מסד הנתונים: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "הערות לטבלה" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,18 +136,18 @@ msgstr "הערות לטבלה" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "עמודה" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -164,11 +164,11 @@ msgstr "עמודה" msgid "Type" msgstr "סוג" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -180,9 +180,9 @@ msgstr "סוג" msgid "Null" msgstr "ריק" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -195,8 +195,8 @@ msgstr "ריק" msgid "Default" msgstr "בררת מחדל" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -204,11 +204,11 @@ msgstr "בררת מחדל" msgid "Links to" msgstr "קישורים אל" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -217,12 +217,12 @@ msgstr "קישורים אל" msgid "Comments" msgstr "הערות" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -233,23 +233,23 @@ msgstr "הערות" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "לא" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -261,8 +261,8 @@ msgstr "לא" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "כן" @@ -272,45 +272,45 @@ msgid "View dump (schema) of database" msgstr "צפייה בשליפה (תבנית) של מסד נתונים" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "לא נמצאו טבלאות במסד הנתונים." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "בחירת הכול" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ביטול הבחירה הכללית" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "שם מסד הנתונים ריק!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "שם מסד הנתונים %1$s הוחלף בשם %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "מסד הנתונים %1$s הועתק אל %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות מדוע יש ללחוץ %sכאן%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -320,14 +320,14 @@ msgstr "טבלה" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "שורות" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "גודל" @@ -340,7 +340,7 @@ msgstr "בשימוש" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "יצירה" @@ -348,7 +348,7 @@ msgstr "יצירה" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "עדכון אחרון" @@ -356,7 +356,7 @@ msgstr "עדכון אחרון" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "נבדק לאחרונה" @@ -371,7 +371,7 @@ msgstr[1] "%s טבלאות" msgid "You have to choose at least one column to display" msgstr "עליך לבחור לפחות עמודה אחת לתצוגה" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "מעבר ל%sבונה החזותי%s" @@ -403,9 +403,9 @@ msgstr "טבלאות במעקב" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "מסד נתונים" @@ -423,66 +423,66 @@ msgstr "עודכנה" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "מצב" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "פעולה" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "הצגה" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "מחיקת נתוני המעקב לטבלה זו" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "השמטה" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "פעיל" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "לא פעיל" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "גרסאות" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "דוח המעקב" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "העתק של המבנה" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "טבלאות שאינן במעקב" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "מעקב אחר טבלה" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "יומן מסד נתונים" @@ -498,12 +498,12 @@ msgstr "סוג הייצוא הנבחר חייב להישמר לקובץ!" msgid "Bad parameters!" msgstr "פרמטרים שגויים!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "אין מספיק מקום לשמירת הקובץ %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -514,7 +514,7 @@ msgstr "הקובץ %s כבר קיים בשרת, נא לשנות את שם הקו msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "השליפה נשמרה אל הקובץ %s." @@ -523,117 +523,124 @@ msgstr "השליפה נשמרה אל הקובץ %s." msgid "Invalid export type" msgstr "סוג הייצוא שגוי" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "ערך עבור העמודה „%s“" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "שימוש ב־OpenStreetMaps כשכבת הבסיס" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "פני השטח" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "נקודה" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "נקודה %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "הוספת נקודה" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "מחרוזת שורה" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "טבעת חיצונית" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "טבעת פנימית" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "הוספת מחרוזת שורה" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "הוספת טבעת פנימית" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "מצולע" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "הוספת מצולע" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "הוספת פני שטח" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "פלט" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "יש לבחור ב„גאומטריה מטקסט” מהעמודה „פונקציה“ ולהדביק את המחרוזת שלהלן לשדה " "„ערך“" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "כפי הנראה ניסית להוריד קובץ גדול מדי. נא לפנות ל%sתיעוד%s לקבלת דרכים לעקיפת " "הגבלה זו." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "הצגת סימנייה" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "הסימנייה נמחקה." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "לא ניתן לקרוא את הקובץ" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -642,7 +649,7 @@ msgstr "" "ניסית לטעון קובץ עם דחיסה שאינה נתמכת (%s). או שהתמיכה בדחיסה לא הוטמעה או " "שבוטלה בהגדרות שלך." -#: import.php:400 +#: import.php:404 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 " @@ -652,26 +659,26 @@ msgstr "" "המרבי המותר בתצורת ה־PHP שלך. ניתן לעיין ב[a@./Documentation." "html#faq1_16@Documentation]שו״ת 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ללא ספרייה להמרת קידודי תווים" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "הסימנייה %s נוצרה" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "הייבוא הושלם בהצלחה, הופעלו %d שאילתות." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -679,7 +686,7 @@ msgstr "" "תום זמן ההמתנה של הסקריפט עבר, אם ברצונך לסיים את הייבוא נא לשלוח מחדש את " "אותו הקובץ והייבוא יימשך." -#: import.php:513 +#: import.php:517 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." @@ -687,9 +694,9 @@ msgstr "" "עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin " "לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "שאילתת ה־SQL שלך בוצעה בהצלחה" @@ -705,7 +712,7 @@ msgstr "" "phpMyAdmin מתנהג בצורה יותר ידידותית עם דפדפן התומך במסגרות (frames-" "capable)." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מנוטרלות." @@ -714,7 +721,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות." msgid "Do you really want to execute \"%s\"?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!" @@ -754,7 +761,7 @@ msgstr "הוספת אינדקס" msgid "Edit Index" msgstr "עריכת האינדקס" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "הוספת %d עמודות לאינדקס" @@ -804,24 +811,24 @@ msgstr "סגירה" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "עריכה" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "תרשים תעבורה חי" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "תרשים חיבור/תהליך חי" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "תרשים תשאול חי" @@ -831,24 +838,24 @@ msgstr "נתונים סטטיים" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "סה״כ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "אחר" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -868,7 +875,7 @@ msgstr "תעבורת השרת (ב־KiB)" msgid "Connections since last refresh" msgstr "התחברויות מאז הרענון האחרון" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "תהליכים" @@ -886,7 +893,7 @@ msgstr "שאלות מאז הרענון האחרון" msgid "Questions (executed statements by the server)" msgstr "שאלות (הצהרות שהופעלו על ידי השרת)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "סטטיסטיקת תשאולים" @@ -931,13 +938,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -997,32 +1004,32 @@ msgstr "" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "חיבורים" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1038,11 +1045,11 @@ msgstr "%s טבלאות" msgid "Questions" msgstr "Persian" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1067,12 +1074,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "ללא" @@ -1172,7 +1179,7 @@ msgstr "תכונות קשר כלליות" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1261,7 +1268,7 @@ msgstr "הסברת SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "זמן" @@ -1371,8 +1378,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" @@ -1624,12 +1631,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "שמירה" @@ -1695,8 +1702,8 @@ msgstr "תוצאת SQL" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "התעלמות" @@ -1805,7 +1812,7 @@ msgstr "מראה שורות" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "ייצור" @@ -1929,27 +1936,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1957,37 +1964,37 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "דצמבר" @@ -2036,32 +2043,32 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "שבת" @@ -2194,16 +2201,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "לשנייה" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "לדקה" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "לשעה" @@ -2220,7 +2227,7 @@ msgstr "מירבי: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "תיעוד" @@ -2243,14 +2250,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "שגיאה" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "שאילתת SQL" @@ -2268,88 +2275,88 @@ msgstr "שאילתת SQL" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "שליחת שאילתה" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "רענון" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "יום ראשון" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "הוספת שדה חדש" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2357,28 +2364,28 @@ msgctxt "First page" msgid "Begin" msgstr "התחלה" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "הקודם" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "הבא" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2386,105 +2393,105 @@ msgctxt "Last page" msgid "End" msgstr "סיום" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "מבנה" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "הכנסה" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "עיון" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "פעולות" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "ריקון" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "הדפסה" @@ -2501,105 +2508,105 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "עולה" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "יורד" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "סידור" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "קריטריונים" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "הוספת/הסרת שורות של קריטריונים" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "הוספת/מחיקת עמודות" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "עדכון שאילתה" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "שימוש בטבלאות" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "או" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "וגם" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "הכנסה" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "מחיקה" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "שינוי" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "שאילתת SQL על מסד הנתונים %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "לפחות אחת מהמילים" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "כל המילים" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "הביטוי במדויק" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "כביטוי רגולרי" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "תוצאות החיפוש אחר „%s“ %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "סה״כ: פריט אחד (%s)" msgstr[1] "סה״כ: %s פריטים" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2608,44 +2615,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "תוצאה אחת (%1$s) בטבלה %2$s" msgstr[1] "%1$s תוצאות בטבלה %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "האם למחוק את התוצאות עבור הטבלה %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "מחיקה" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "חיפוש במסד הנתונים" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "מילים או ערכים לחיפוש אחריהם (תו כללי: „%“):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "חיפוש:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "מילים מופרדות ברווח („ “)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "בתוך הטבלאות:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "בתוך העמודה:" @@ -2700,8 +2707,8 @@ msgstr "הרצת שאילתה מועדפת" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2786,7 +2793,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2803,8 +2810,8 @@ msgstr "בשאילתה" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 @@ -2815,7 +2822,7 @@ msgstr "מראה שורות" msgid "total" msgstr "סה\"כ" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" @@ -2826,7 +2833,7 @@ msgstr "שאילתה לקחה %01.4f שניות" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "עם הנבחרים:" @@ -2836,8 +2843,8 @@ msgstr "עם הנבחרים:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "סימון הכול" @@ -2878,52 +2885,52 @@ msgstr "קישור לא נמצא" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2932,69 +2939,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "אין אינדקסים מוגדרים!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "אינדקסים" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "מספור" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "איסוף" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "הערות" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "המפתח הראשי הוסר" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "אינדקס %s הוסר" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3003,12 +3010,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "מאגרי נתונים" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "שרת" @@ -3078,18 +3085,18 @@ msgstr "משתמש" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "דו\"ח בינארי" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "שכפול" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "משתנים" @@ -3223,8 +3230,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "פונקציה" @@ -3235,11 +3242,11 @@ msgstr "פונקציה" msgid "Operator" msgstr "פעולות" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "ערך" @@ -3249,67 +3256,67 @@ msgstr "ערך" msgid "Table Search" msgstr "חיפוש" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "הכנסה" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "בחירת שדות (לפחות אחד):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "מספר של שורות לכל דף" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "סדר תצוגה:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "שאילתת SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3384,14 +3391,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3642,7 +3649,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "טבלאות" @@ -3656,12 +3663,12 @@ msgstr "טבלאות" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "נתונים" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "תקורה" @@ -3765,7 +3772,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3914,22 +3921,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "איפוס" @@ -4209,7 +4216,7 @@ msgstr "חבילת הקידוד של הקובץ:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "תבנית" @@ -4331,7 +4338,7 @@ msgstr "מפתח תווית" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "סוג MIME" @@ -4372,7 +4379,7 @@ msgid "Enclose table and column names with backquotes" msgstr "צירוף תוי ציטוט (backquotes) אל שמות טבלאות ושדות" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5883,10 +5890,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6141,54 +6148,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "השרת אינו מגיב" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "שינוי סיסמא" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "ללא סיסמא" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "הקלדה נוספת" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6344,8 +6359,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6432,71 +6447,71 @@ msgstr "גרסת שרת" msgid "authored on %1$s by %2$s" msgstr "גרסת שרת" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "נכשל בכניסה לשרת MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "אין מאגרי נתונים" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "אין מאגרי נתונים" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6574,72 +6589,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "מצב InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "דפים" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "דפים חופשיים" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "דפים מלוכלכים" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "דפים מכילים מידע" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "דפים לריקון" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "עמודים עסוקים" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 #, fuzzy msgid "Read requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6830,8 +6845,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6848,127 +6863,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "בינארי" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7018,7 +7033,7 @@ msgstr "" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7307,7 +7322,7 @@ msgstr "אפשרויות טבלה" msgid "Rename table to" msgstr "שינוי שם טבלה אל" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "מנוע אחסון" @@ -7431,8 +7446,8 @@ msgstr "ברוך הבא אל %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7505,21 +7520,21 @@ msgstr "שם משתמש/סיסמה שגויים. הגישה נדחתה." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7684,20 +7699,21 @@ msgstr "סוגי MIME זמינים" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "מארח" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "זמן ייצור" @@ -7939,7 +7955,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8143,7 +8159,7 @@ msgstr "יצירה של קבצי PDF" msgid "Displaying Column Comments" msgstr "מציג הערות עמודה" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 #, fuzzy msgid "Browser transformation" @@ -8210,7 +8226,7 @@ msgstr "ביטול הסימון הכולל" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8221,8 +8237,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8243,31 +8259,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "משתנה" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "קוד שרת (ID)" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "כל משתמש" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8276,34 +8292,34 @@ msgstr "כל משתמש" msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "ייצור סיסמא" @@ -8368,7 +8384,7 @@ msgstr "" msgid "Event name" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "סוג אירוע" @@ -8755,7 +8771,7 @@ msgstr "לא נמצאו טבלאות במאגר נתונים." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8765,7 +8781,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "הטבלה \"%s\" לא קיימת!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8811,101 +8827,101 @@ msgstr "תכונות" msgid "Extra" msgstr "תוספת" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "יצירת עמוד חדש" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "עיצוב אוטומטי" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "יחסים פנימיים" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "אנא בחר עמוד לעריכה" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "בחירת הכל" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "בחירת טבלאות" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "שמות עמודה" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "הצגת תרשים PDF" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "הראה רשת" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "ראיית צבע" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "ראיית ממדים של טבלאות" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "הצגת כל הטבלאות ברוחב דומה?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "מילון נתונים" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "יצירה" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "גודל דף" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8913,7 +8929,7 @@ msgstr "" "לעמוד הנוכחי יש הפניות לטבלאות שכבר לא קיימות. האם אתה רוצה למחוק את הפניות " "אלו?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9215,7 +9231,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "משתמש" @@ -9355,8 +9371,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. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " @@ -9421,11 +9437,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -9507,7 +9523,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "הטבלה %s רוקנה" @@ -9520,12 +9536,12 @@ msgstr "המעקב פעיל." msgid "Tracking is not active." msgstr "המעקב אינו פעיל." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "התצוגה %s נשמטה" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "הטבלה %s נשמטה" @@ -9556,14 +9572,14 @@ msgid "Column %s has been dropped" msgstr "טבלה %s נמחקה" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "ראשי" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "אינדקס" @@ -9573,7 +9589,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9601,7 +9617,7 @@ msgstr "תצוגת יחסים" msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9613,7 +9629,7 @@ msgstr "אתה חייב להוסיף לפחות שדה אחד." msgid "Add column" msgstr "הוספת %s תאים" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9638,15 +9654,15 @@ msgstr "לאחר %s" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "דינאמי" @@ -9654,15 +9670,15 @@ msgstr "דינאמי" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "אורך שורה" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "גודל שורה" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9716,15 +9732,15 @@ msgstr "הוספת שדה חדש" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "מידע" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "שימוש מקום" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "יעיל" @@ -9765,19 +9781,19 @@ msgstr "" msgid "Move column" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 #, fuzzy msgid "Transformation options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -9790,36 +9806,36 @@ msgstr "" "(\"'\") ביחד עם הערכים האלה, הכנס לוכסן אחורי לפניהם (לדוגמא '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ללא" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "לאחר %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10025,7 +10041,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "אין מאגרי נתונים" @@ -10340,30 +10356,30 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "שדות" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "שם דו\"ח" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "מיקום" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "מיקום מקורי" @@ -10371,7 +10387,7 @@ msgstr "מיקום מקורי" msgid "Character Sets and Collations" msgstr "חבילות קידוד" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10379,24 +10395,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s מסדי נתונים נמחקו בהצלחה." msgstr[1] "%s מסדי נתונים נמחקו בהצלחה." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "סטטיסטיקת מסד הנתונים" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "הפעלת סטטיסטיקה" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10469,50 +10485,50 @@ msgstr "ההרשאות נטענו מחדש בהצלחה." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10521,277 +10537,277 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "אנא בחר מאגר נתונים" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "מבנה בלבד" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "מבנה בלבד" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "סוג שאילתה" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "ראיית טבלאות" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "מידע זמן ריצה" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "מספר שדות" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "רענון" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "אל תשנה את הסיסמא" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "ראיית טבלאות" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "ראיית טבלאות" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "יחסים" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "סוג שאילתה" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "פונקציה" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10799,116 +10815,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "משפטים" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "שרת MySQL פעיל במשך %s. הוא התחיל לפעול ב- %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "התקבל" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "נשלח" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "בוטל" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "פקודה" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10916,78 +10932,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10995,7 +11011,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11003,42 +11019,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11046,33 +11062,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11081,243 +11097,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "חבילת הקידוד של הקובץ:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11325,99 +11341,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11425,18 +11441,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11444,69 +11460,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "סוג שאילתה" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "שבת" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "הוספת שדה חדש" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11515,7 +11531,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11523,18 +11539,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11542,11 +11558,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11554,90 +11570,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "שינוי שם מאגר נתונים אל" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "בחירת טבלאות" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "הוספת משתמש חדש" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "שאילתת SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "סטטיסטיקת שורה" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "בחירת הכל" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "סוג שאילתה" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11645,7 +11661,7 @@ msgid_plural "%d seconds" msgstr[0] "לשנייה" msgstr[1] "לשנייה" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11765,19 +11781,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "משתני והגדרות שרת" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "ערך זמן חיבור (Session)" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "ערך גלובלי" @@ -12069,44 +12085,44 @@ msgstr "" msgid "Wrong data" msgstr "אין מאגרי נתונים" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "תוצאת SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "נוצר ע\"י" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "תווית" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy msgid "The columns have been moved successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." @@ -12263,16 +12279,16 @@ msgstr "הוספת שדה חדש" msgid "Index name:" msgstr "שם אינדקס:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "סוג אינדקס:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "הוספה לאינדקס  %s שורה/שורות" @@ -12441,38 +12457,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "גרסת שרת" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "גרסת שרת" @@ -12833,8 +12849,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12963,8 +12979,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/hi.po b/po/hi.po index df2cf57e3d..a8523cf58c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-19 08:56+0200\n" "Last-Translator: rajnikant sharma \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: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "सभी दिखाएँ" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "पृष्ठ संख्या:" @@ -38,36 +38,36 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "ढूंढें" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "ढूंढें" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "जाएँ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "वर्णन" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "इस मान का उपयोग करें" @@ -118,18 +118,18 @@ msgstr "%1$s डेटाबेस बनाया गया है." msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "टेबल टिप्पणि:" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,18 +137,18 @@ msgstr "टेबल टिप्पणि:" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "स्तम्भ" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "स्तम्भ" msgid "Type" msgstr "प्रकार/किस्म" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "प्रकार/किस्म" msgid "Null" msgstr "शून्य" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "शून्य" msgid "Default" msgstr "तयशुदा" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "तयशुदा" msgid "Links to" msgstr "के लिए लिंक" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "के लिए लिंक" msgid "Comments" msgstr "टिप्पणी" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "टिप्पणी" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "नहीं" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "हाँ " @@ -273,49 +273,49 @@ msgid "View dump (schema) of database" msgstr "डेटाबेस का डंप (स्कीमा) नजारा" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "सभी का चयन करें" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "डेटाबेस का नाम खाली है" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "डेटाबेस %s का नाम बदल कर %s रखा गया है" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "डेटाबेस %s से %s में नकल किया गया है" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%sयहाँ%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" +"sयहाँ%s पर क्लिक करें." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "टेबल " #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "रो" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "आकार" @@ -345,7 +345,7 @@ msgstr "उपयोग में है" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "रचना" @@ -353,7 +353,7 @@ msgstr "रचना" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "पिछला नवीनीकरण" @@ -361,7 +361,7 @@ msgstr "पिछला नवीनीकरण" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "पिछली जाँच" @@ -376,7 +376,7 @@ msgstr[1] " %s टेबल" msgid "You have to choose at least one column to display" msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" @@ -409,9 +409,9 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "डाटाबेस" @@ -429,66 +429,66 @@ msgstr "अद्यतन" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "स्थिति" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "कार्य" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "दिखाओ" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "रद्द" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "निष्क्रिय" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "लापता टेबलएं" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "डेटाबेस का रोजनामचा" @@ -506,12 +506,12 @@ msgstr "चयनित निर्यात प्रकार को फा msgid "Bad parameters!" msgstr "अनुक्रमणिका जोड़" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." @@ -534,118 +534,121 @@ msgstr "डंप को %s फाइल में सेव किया गय msgid "Invalid export type" msgstr "निर्यात प्रकार" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "\"%s\" काँलम के लिए मान " -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "ज्यामिति" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "बिन्दु" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "बिंदु %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "एक बिंदु जोड़ें" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "बाहरी वृत्त" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "आंतरिक वृत्त" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "नया आंतरिक वृत्त जोडें" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "बहुभुज" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "नया बहुभुज जोडें" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "ज्यामिति जोडें" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "उत्पादन" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "फाइल पढ़ी नहीं जा सकती. " -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -654,7 +657,7 @@ msgstr "" "आप असमर्थित सम्पीडन (%s) के साथ फाइल लोड करने का प्रयास कर रहे हैं. इसके लिए या तो " "समर्थन कार्यान्वित नहीं है या आपने विन्यास को अक्षम कर रखा है." -#: import.php:400 +#: import.php:404 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 " @@ -664,33 +667,33 @@ msgstr "" "गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a@./" "Documentation.html#faq1_16@Documentation] अकसर किये गए सवाल 1.16 [/ a] देखें." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "अक्षर सेट रूपांतरण पुस्तकालय के बिना फ़ाइल के अक्षर सेट को परिवर्तित नहीं कर सकते" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें." -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से जमा करें." -#: import.php:513 +#: import.php:517 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." @@ -698,9 +701,9 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है." @@ -714,7 +717,7 @@ msgstr "वापस" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin तख़्त-सक्षम ब्रोव्सेर के लिए ज्यादा दोस्ताना है." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." @@ -723,7 +726,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." msgid "Do you really want to execute \"%s\"?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -769,7 +772,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Edit Index" msgstr "संपादन मोड" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -820,26 +823,26 @@ msgstr "बंद" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "सर्वर चुनिये" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -851,24 +854,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -890,7 +893,7 @@ msgstr "सर्वर चुनिये" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "प्रक्रियां" @@ -910,7 +913,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "डाटाबेसों के सांख्यिकी" @@ -960,13 +963,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1028,32 +1031,32 @@ msgstr "" msgid "Bytes received" msgstr "प्राप्त" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "कनेक्शन" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "बैट्स" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1071,11 +1074,11 @@ msgstr " %s टेबलें" msgid "Questions" msgstr "संस्करण" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "ट्रैफ़िक" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1102,12 +1105,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "कोई नहीं" @@ -1207,7 +1210,7 @@ msgstr "सेटिंग्स प्रबंधक" msgid "Current settings" msgstr "अधिक सेटिंग्स" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1303,7 +1306,7 @@ msgstr "SQL की व्याख्या " #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "समय" @@ -1415,8 +1418,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात" @@ -1665,12 +1668,12 @@ msgstr "अधिकतम निष्पादन समय" msgid "%d is not valid row number." msgstr "%d वैध रो संख्या नहीं है" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "बचाना" @@ -1734,8 +1737,8 @@ msgstr "SQLपरिणाम" msgid "Data point content" msgstr "सूचक का आकार डेटा" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "ध्यान न देना" @@ -1844,7 +1847,7 @@ msgstr "अद्यतन रोयाँ" msgid "Generate password" msgstr "पासव्रड उत्पन्न करें" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "उत्पन्न" @@ -1948,63 +1951,63 @@ msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "दिसमबर" @@ -2045,32 +2048,32 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "शनिवार" @@ -2186,16 +2189,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "प्रति सेकंड" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "प्रति मिनट" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "प्रति घंटे" @@ -2212,7 +2215,7 @@ msgstr "अधिकतम: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "डोक्युमेंटेशन" @@ -2235,14 +2238,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "त्रुटि" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL क्वरी" @@ -2260,85 +2263,85 @@ msgstr "SQL क्वरी" msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL वलिदटर से जुड़ने में विफल" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL की व्याख्या " -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "क्वरी भेजें" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "ताज़ा करना" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL की पुष्टि को छोड़ जाना" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL की पुष्टि करना" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "इस कुएरी की इनलाइन एडिट" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "रूपरेखा" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "रविवार" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "नियमित कार्य" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2346,28 +2349,28 @@ msgctxt "First page" msgid "Begin" msgstr "प्रारंभ" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "पिछला" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "अगला" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2375,107 +2378,107 @@ msgctxt "Last page" msgid "End" msgstr "आखरी" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" डेटाबेस पर जायें " -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे " -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "संरचना" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "इनसर्ट" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "ब्राउज़" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "कार्रवाई" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "खाली" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "छापें" @@ -2492,105 +2495,105 @@ msgstr "" msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "आरोही" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "अवरोही" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "सॉर्ट" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "मापदंड" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "मापदंड रो जोडें/हटायें" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "कोलम जोडें/हटायें" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "क्वरी का नवीनीकरण करें" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "टेबल का उपयोग करो" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "अथवा" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "और" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "घुसाएं" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "हटाइए" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "संशोधन" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL क्वरी:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "कोई भी एक शब्द" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "सभी शब्द" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "यथार्थ वाक्यांश" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "नियमित अभिव्यक्ति के रूप में" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "%s %s के लिये परिणाम खोजें:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "कुल: %s मैच" msgstr[1] "कुल: %s मैच" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2599,44 +2602,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "मिटाएँ" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "डाटाबेस में खोजें" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "खोजो:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "टेबल में:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "काँलम के अंदर:" @@ -2691,8 +2694,8 @@ msgstr "" msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2771,7 +2774,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2789,8 +2792,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 पढ़ें." #: libraries/DisplayResults.class.php:4939 @@ -2801,7 +2804,7 @@ msgstr "रौ देखिये" msgid "total" msgstr "कुल" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" @@ -2812,7 +2815,7 @@ msgstr "क्वरी को %01.4f सेकेंड का समय लग #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "चुने हुओं को:" @@ -2822,8 +2825,8 @@ msgstr "चुने हुओं को:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "सभी को चेक करें" @@ -2863,41 +2866,41 @@ msgstr "लिंक नहीं मिला" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर गुम है." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "डिस्क में फ़ाइल लिखने में असफल" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2905,11 +2908,11 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # " "faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें." -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2918,68 +2921,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin की नई विंडो खोलें" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "परिभाषित सूचकांक नहीं पाए गए!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "सूचकांक" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "प्रमुखता" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "क्रम में करें" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "टिप्पणी" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "प्राथमिक कुंजी गिरा दी गयी है" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "सूचकांक %s गिरा दिया गया है" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2988,12 +2991,12 @@ msgstr "सूचकांक %1$s और %2$s बराबर लगने क #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "डाटाबेस" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "सर्वर" @@ -3063,18 +3066,18 @@ msgstr "यूसर" msgid "Synchronize" msgstr "सिंक्रनाइज़" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "बाइनरी लोग" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "प्रतिकृति" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "प्रक्रियां" @@ -3216,8 +3219,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3227,11 +3230,11 @@ msgstr "" msgid "Operator" msgstr "ऑपरेटर" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "मूल्य" @@ -3241,68 +3244,68 @@ msgstr "मूल्य" msgid "Table Search" msgstr "ढूंढें" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "इनसर्ट" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "काँलम चुनें (कम से कम एक)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "प्रति पृष्ट कितने रौ" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "क्रम से दिखाओ:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "प्रदर्शित रो की अधिकतम संख्या" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "खोज मापदंड छिपाना" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "नियंत्रण यूसर" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3377,14 +3380,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3637,7 +3640,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "टेबल" @@ -3651,12 +3654,12 @@ msgstr "टेबल" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "डाटा" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "जरूरत से ज्यादा" @@ -3767,7 +3770,7 @@ msgstr "खोले" msgid "Closed" msgstr "बंद" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3905,22 +3908,22 @@ msgstr "विकी" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "यह सेटिंग अक्षम है, यह आपके विन्यास में लागू नहीं की जा सकेगी" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "मान निर्धारित: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "मूलभूत मान को बहाल" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "कर्ता को इस मूल्य को अनुकूलित करने की अनुमति दें " -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "रीसेट" @@ -4202,7 +4205,7 @@ msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "प्रारूप" @@ -4311,7 +4314,7 @@ msgstr "लेबल कुंजी" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME प्रकार" @@ -4347,7 +4350,7 @@ msgid "Enclose table and column names with backquotes" msgstr "टेबल और फील्ड के नाम को backquotes से बंद करें " #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL संगतता मोड" @@ -5862,10 +5865,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6118,54 +6121,62 @@ msgstr "%s विस्तार गायब है. कृपया अपन msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "सर्वर जवाब नहीं दे रहा" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "विवरण..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "पासव्रड बदलिये" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "पासवर्ड नहीं है" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "फिर से लिखें" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "शब्दकूट हैशिंग" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 संगत" @@ -6297,8 +6308,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6374,71 +6385,71 @@ msgstr "%s संस्करण बनायें %s.%s" msgid "authored on %1$s by %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "आयात की गई फ़ाइल का प्रारूप" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "फाइल संसाधित की जा रही है, कृपया धीरज रखें" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "फाइल अपलोड की जा रही है, कृपया धीरज रखें" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "वर्तमान सर्वर में डेटा आयात" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "\"%s\" डेटाबेस में आयात" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "\"%s\" टेबल में आयात" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "आयात करने के लिए फ़ाइल" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6516,71 +6527,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "बफर पूल उपयोग" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "पृष्ठों" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "मुक्त पृष्ठों" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "गंदे पृष्ठों" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "पृष्ठ डेटा युक्त" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "पृष्ठ प्लावित हो" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "व्यस्त पृष्ठ" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "बफर पूल गतिविधि" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "पढने का अनुरोध" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "लिखने का अनुरोध" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "% में गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6771,8 +6782,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6791,132 +6802,132 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "दृश्य पर जायें" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "छिपाना" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "बइनरी" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -6966,7 +6977,7 @@ msgstr "" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7255,7 +7266,7 @@ msgstr "टेबल विकल्प" msgid "Rename table to" msgstr "टेबल का नाम बदलें" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7369,11 +7380,11 @@ msgstr "%s मे स्वागत है" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7447,21 +7458,21 @@ msgstr "यूसरनेम/पासवर्ड गलत है। प् msgid "Can not find signon authentication script:" msgstr "विन्यास प्रमाणीकरण" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "%s फाइल में कोई भी प्रमुख आईडी नहीं है" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "हार्डवेयर प्रमाणीकरण असफल" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "कोई वैध प्रमाणीकरण कुंजी नहीं पाई गई." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "सत्यापन." @@ -7614,20 +7625,21 @@ msgstr "फीचरस दिखाओ" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "होस्ट" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "समय पर बनाया" @@ -7870,7 +7882,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV इनपुट में अवैध काँलम गिनती लाइन %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "टेबल का नाम" @@ -8075,7 +8087,7 @@ msgstr "PDFs का निर्माण" msgid "Displaying Column Comments" msgstr "काँलम सामग्री प्रदर्शित" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "सामग्री दिखाने" @@ -8143,7 +8155,7 @@ msgstr "सभी को अनचेक करें" msgid "Slave configuration" msgstr "दास विन्यास" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "मास्टर सर्वर को बदलें या रेकांफिगुरे करें" @@ -8154,8 +8166,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8175,31 +8187,31 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "स्थिति" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "सर्वर आईडी" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "कोई भी यूसर" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8208,34 +8220,34 @@ msgstr "कोई भी यूसर" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "इस होस्ट" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "पासवर्ड उत्पन्न" @@ -8305,7 +8317,7 @@ msgstr "विवरण..." msgid "Event name" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "इवेंट प्रकार " @@ -8714,7 +8726,7 @@ msgstr "डाटाबेस में कोई टेबल नहीं।" msgid "There are no events to display." msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8724,7 +8736,7 @@ msgstr "अपलोड करने के लिए फाइल उपलब msgid "The %s table doesn't exist!" msgstr "%s टेबल(s) मौजूद नहीं है" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8772,107 +8784,107 @@ msgstr "विशेषता" msgid "Extra" msgstr "अतिरिक्त" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "नया पेज़ बनाऐं" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "स्वचालित लेआउट आधार पर" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "आंतरिक संबंध" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "विदेशी कुंजी" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "एडिट करने के लिये पेज़ चुने" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "पेज चुनिये" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "टेबल चुनिये" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "कोलम के नाम" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF स्कीमा दिखाओ" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "ग्रिड दिखाओ" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "रंग दिखाओ" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "टेबल के परिमाण दिखाओ" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. " -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "केवल कुंजी दिखाओ" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "परिदृश्य" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "चित्र" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "अभिविन्यास" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "पेपर आकार" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9166,7 +9178,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "यूसर" @@ -9306,8 +9318,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9366,11 +9378,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -9452,7 +9464,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "टेबल %s को खाली किया गया है." @@ -9465,12 +9477,12 @@ msgstr "ट्रैकिंग सक्रिय है" msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द किया गया है." -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "टेबल %s को रद्द किया गया है." @@ -9498,14 +9510,14 @@ msgid "Column %s has been dropped" msgstr "टेबल %s को रद्द किया गया है." #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "प्राथमिक" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "सूची" @@ -9515,7 +9527,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "प्राथमिक" @@ -9543,7 +9555,7 @@ msgstr "संबंध दृश्य" msgid "Propose table structure" msgstr "टेबल संरचना का प्रस्ताव" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9553,7 +9565,7 @@ msgstr "आपको कम से कम एक स्तंभ प्रदर msgid "Add column" msgstr "नया काँलम जोडें" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9577,15 +9589,15 @@ msgstr "%s के बाद" msgid "Create an index on  %s columns" msgstr " %s  कोलम पर इन्डेक्स बनाऐं " -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "पंक्ति आँकड़े" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "स्थिर" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "गतिशील" @@ -9593,15 +9605,15 @@ msgstr "गतिशील" msgid "partitioned" msgstr "विभाजित" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "रौ की लंबाई" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "रौ का आकार" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9651,15 +9663,15 @@ msgstr "अनुक्रमणिका जोड़" msgid "Add FULLTEXT index" msgstr "FULLTEXT सूचकांक जोड़ें " -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "सूचना" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "स्थान उपयोग" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "वास्तविक" @@ -9689,18 +9701,18 @@ msgstr "" msgid "Move column" msgstr "काँलम हटाना" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "परिवर्तन के विकल्प" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9708,36 +9720,36 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM या SET डेटा बहुत लंबा है" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "अधिक संपादन स्थान की जरूरत" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "No" msgctxt "for default" msgid "None" msgstr "डिफ़ॉल्ट के लिए" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "जैसे परिभाषित:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s के बाद" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9938,7 +9950,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" @@ -10245,29 +10257,29 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "फाइलें" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "लॉग नाम" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "स्थिति" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "मूल स्थिति" @@ -10275,7 +10287,7 @@ msgstr "मूल स्थिति" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10283,24 +10295,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" msgstr[1] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "डाटाबेसों के आँकडे" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "आँकडे Enable करें" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10372,50 +10384,50 @@ msgstr "चयनित यूसर को सफलतापूर्वक msgid "Unknown error" msgstr "अज्ञात त्रुटि" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "%s मास्टर से कनेक्ट करने मैं असमर्थ" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "मास्टर की लोग स्तिथि पढने मैं असमर्थ, मास्टर पर संभव विशेषाधिकार समस्या" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "मास्टर बदलने मैं असमर्थ" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "मास्टर सर्वर सफलतापूर्वक परिवर्तित %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "मास्टर अवस्था" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "मास्टर विन्यास" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10424,275 +10436,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "सभी डेटाबेस को दोहराना; उपेक्षा" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "सभी डेटाबेस को दोहराना; नकल" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "कृपया डेटाबेस चुने" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "नियंत्रित बचाना" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "पूर्ण शुरू" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "पूर्ण विराम" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "रीसेट दास" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "केवल संरचना" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "केवल संरचना" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "वर्तमान त्रुटि को छोड़" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "अगले छोड़" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "त्रुटियों" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "हैंडलर" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "क्वेरी कैश" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "थ्रेअद" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "अस्थायी डेटा" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "देरी आवेषण" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "कुंजी कैश" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "जोड़" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "छँटाई" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "लेन - देन समन्वयक" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "सभी टेबलओं फ्लश" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "खुला टेबल शो" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "फ्लश क्वेरी कैश" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "क्रम जानकारी" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "रो की संख्या" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "ताज़ा करना" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "पासवर्ड मत बदलिये" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "खुला टेबल शो" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "खुला टेबल शो" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "एडमिनिस्ट्रेशन" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10700,118 +10712,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "स्टार्टअप पेज अनुकूलित करें" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "रो आँकड़े" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "प्राप्त" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "भेजा" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "रद्द" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "आदेश" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL सर्वर से कनेक्ट नहीं कर सका" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10819,78 +10831,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10898,7 +10910,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10906,42 +10918,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10949,33 +10961,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10984,244 +10996,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11229,99 +11241,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11329,18 +11341,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11348,72 +11360,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "क्षेत्र रोयाँ" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "अनुक्रमणिका जोड़" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "मूलभूत मान को बहाल" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11422,7 +11434,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11430,18 +11442,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11449,11 +11461,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11461,95 +11473,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "डेटाबेस को हटा दे" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "टेबल चुनिये" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "अवैध टेबल नाम" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "एक नया सर्वर जोडें" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL क्वरी" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "आँकड़े दिखाएँ" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "पेज चुनिये" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11557,7 +11569,7 @@ msgid_plural "%d seconds" msgstr[0] "सेकंड" msgstr[1] "सेकंड" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11675,19 +11687,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "सर्वर चर और सेटिंग्स" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "सत्र मूल्य" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "वैश्विक मूल्य" @@ -11977,42 +11989,42 @@ msgstr "" msgid "Wrong data" msgstr "कोइ डाटाबेस नहिं" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQLपरिणाम" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "लेबल" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Table %1$s has been altered successfully" msgid "The columns have been moved successfully." @@ -12181,16 +12193,16 @@ msgstr "संपादन मोड" msgid "Index name:" msgstr "इन्डेक्स नाम" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "\"PRIMARY\" नाम हो सकता है केवल एक प्राथमिक कुंजी का " -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "इन्डेक्स प्रकार" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "सूचकांक में जोडें  %s column(s)" @@ -12367,41 +12379,41 @@ msgstr "%s के रूप में निर्यात" msgid "Show versions" msgstr "संस्करण दिखाएँ" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "ट्रैकिंग निष्क्रिय %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "निष्क्रिय करे" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "ट्रैकिंग सक्रिय %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "सक्रिय करे" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "संस्करण बनाएँ" @@ -12770,8 +12782,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12904,8 +12916,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/hr.po b/po/hr.po index 929565bcab..b6a0c3ad49 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Broj stranice:" @@ -40,36 +40,36 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Traži" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Traži" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Naziv ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" @@ -120,18 +120,18 @@ msgstr "Baza podataka %1$s uspješno je izrađena." msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,7 +139,7 @@ msgstr "Komentari tablice" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -147,12 +147,12 @@ msgstr "Komentari tablice" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -169,11 +169,11 @@ msgstr "Nazivi stupaca" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -185,9 +185,9 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -200,8 +200,8 @@ msgstr "Null" msgid "Default" msgstr "Zadano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -209,11 +209,11 @@ msgstr "Zadano" msgid "Links to" msgstr "Povezano s" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -222,12 +222,12 @@ msgstr "Povezano s" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -238,23 +238,23 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -266,8 +266,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -277,35 +277,35 @@ msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Odaberi sve" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -317,12 +317,12 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -332,14 +332,14 @@ msgstr "Tablica" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Redaka" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Veličina" @@ -352,7 +352,7 @@ msgstr "u upotrebi" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Izrada" @@ -360,7 +360,7 @@ msgstr "Izrada" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Posljednje ažuriranje" @@ -368,7 +368,7 @@ msgstr "Posljednje ažuriranje" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Posljednja provjera" @@ -384,7 +384,7 @@ msgstr[1] "%s tablica" msgid "You have to choose at least one column to display" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -420,9 +420,9 @@ msgstr "Provjeri tablicu" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -442,70 +442,70 @@ msgstr "Ažurirano" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stanje" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Aktivnost" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Prikaži" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Ispusti" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "neaktivno" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Perzijski" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Samo strukturu" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -526,12 +526,12 @@ msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -544,7 +544,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." @@ -554,126 +554,129 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." msgid "Invalid export type" msgstr "Vrsta izvoza" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrijednost stupca \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Točka" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Dodaj %s polja" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Redovi završeni s" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dodaj %s polja" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -683,7 +686,7 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: import.php:400 +#: import.php:404 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 " @@ -693,26 +696,26 @@ msgstr "" "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " "konfiguracije. Pogledajte ČPP 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -720,7 +723,7 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: import.php:513 +#: import.php:517 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." @@ -729,9 +732,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit uspješno je izvršen" @@ -747,7 +750,7 @@ msgstr "" "phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava " "okvire." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." @@ -757,7 +760,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene." msgid "Do you really want to execute \"%s\"?" msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -803,7 +806,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Uredi sljedeći redak" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -862,26 +865,26 @@ msgstr "Zatvori" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Odabir poslužitelja" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -892,24 +895,24 @@ msgstr "Statički podatci" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -931,7 +934,7 @@ msgstr "Odabir poslužitelja" msgid "Connections since last refresh" msgstr "Veze od zadnjeg osvježavanja" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesi" @@ -951,7 +954,7 @@ msgstr "Upiti od zadnjeg osvježavanja" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statistike redova" @@ -1002,13 +1005,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "kB" @@ -1070,32 +1073,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Veze" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1111,11 +1114,11 @@ msgstr "%s tablica" msgid "Questions" msgstr "Perzijski" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1142,12 +1145,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "bez kompresije" @@ -1247,7 +1250,7 @@ msgstr "Opće osobine relacija" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1339,7 +1342,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Vrijeme" @@ -1448,8 +1451,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1708,12 +1711,12 @@ msgstr "Vrijeme izvršavanja upita" msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Spremi" @@ -1779,8 +1782,8 @@ msgstr "Operacije rezultata upita" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoriraj" @@ -1890,7 +1893,7 @@ msgstr "Ažuriraj redak" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generiraj" @@ -2016,27 +2019,27 @@ msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2044,37 +2047,37 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Pro" @@ -2123,32 +2126,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sub" @@ -2284,16 +2287,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "po sekundi" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "po minuti" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "po satu" @@ -2310,7 +2313,7 @@ msgstr "Najv: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacija" @@ -2333,14 +2336,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Pogreška" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL upit" @@ -2358,87 +2361,87 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Podnesi upit" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Osvježi" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Izrada profila" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2446,28 +2449,28 @@ msgctxt "First page" msgid "Begin" msgstr "Na vrh stranice" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Prethodni" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Sljedeće" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2475,106 +2478,106 @@ msgctxt "Last page" msgid "End" msgstr "Završetak" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Strukturu" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Umetni" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Pretraživanje" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacije" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Pretraži računalo" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Isprazni" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Izvrši" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Ispiši" @@ -2591,102 +2594,102 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Uzlazno" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Silazno" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Presloži" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterij" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/Izbriši redak kriterija" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ažuriraj upit" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Upotrijebi tablice" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ili" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "I" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Uredi" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "najmanje jedna riječ" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "sve riječi" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "točan izraz" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kao regularan izraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretraživanja za \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2694,7 +2697,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s poklapanja" msgstr[1] "Ukupno: %s poklapanja" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2702,49 +2705,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Izbacivanje podataka za tablicu" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Izbriši" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Traži u bazi podataka" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Riječi su razdvojene znakom razmaka (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tablica:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2801,8 +2804,8 @@ msgstr "Izvrši favorizirani upit" msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2887,7 +2890,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Eliminiraj" @@ -2904,8 +2907,8 @@ msgstr "unutar upita" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2917,7 +2920,7 @@ msgstr "Prikazivanje redaka" msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" @@ -2928,7 +2931,7 @@ msgstr "Upit je trajao %01.4f sek" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "S odabirom:" @@ -2938,8 +2941,8 @@ msgstr "S odabirom:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Označi sve" @@ -2980,17 +2983,17 @@ msgstr "Veza nije pronađena" msgid "Too many error messages, some are not displayed." msgstr "Previše poruka o greškama, neke nisu prikazane" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2998,37 +3001,37 @@ msgstr "" "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "određenu u HTML obliku." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Greška prilikom premještanja datoteke" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3037,68 +3040,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nema definiranog indeksa!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Uspoređivanje" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primarni ključ je odbačen" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index %s je odbačen" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3108,12 +3111,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Baze podataka" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Poslužitelj" @@ -3183,18 +3186,18 @@ msgstr "Korisnik" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binarni zapisnik" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Varijable" @@ -3336,8 +3339,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3347,11 +3350,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vrijednost" @@ -3361,68 +3364,68 @@ msgstr "Vrijednost" msgid "Table Search" msgstr "Traži" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Umetni" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Odaberite polja (najmanje jedno):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Broj redaka po stranici" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Redoslijed prikaza:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL upit" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "PHP ekstenzija" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3497,14 +3500,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3756,7 +3759,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tablice" @@ -3770,12 +3773,12 @@ msgstr "Tablice" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Prepunjenje" @@ -3894,7 +3897,7 @@ msgstr "Otvori" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4042,22 +4045,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Postavi vrijednost %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Vrati zadanu vrijednost" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Povrat" @@ -4340,7 +4343,7 @@ msgstr "Tablica znakova za datoteku:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Oblikovanje" @@ -4464,7 +4467,7 @@ msgstr "Ključ oznake" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME vrsta" @@ -4505,7 +4508,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Unesi nazive tablica i polja sa stražnjim navodnicima" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Način rada SQL kompatibilnosti" @@ -6040,10 +6043,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6300,7 +6303,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6309,50 +6312,58 @@ msgid "" msgstr "" "(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Poslužitelj ne odgovara" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalji..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezivanje kontrolnih korisnika na način kako je definirano u vašoj " "konfiguraciji nije uspjelo." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Promijeni lozinku" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Bez lozinke" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ponovite" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Izrada presjeka lozinke" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6508,12 +6519,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -6605,75 +6616,75 @@ msgstr "Izradi relaciju" msgid "authored on %1$s by %2$s" msgstr "Izradi relaciju" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Oblikovanje uvezene datoteke" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Nema baza podataka" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Nema baza podataka" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6767,71 +6778,71 @@ msgstr "" "Veličina memorijskog međuspremnika koju InnoDB upotrebljava za privremenu " "pohranu podataka i indeksa svojih tablica." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB stanje" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Iskoristivost međuspremnika" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "stranice" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Slobodne stranice" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Prljave stranice" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Stranice koje sadrže podatke" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Stranice za pražnjenje" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Zaposlene stranice" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Vezane stranice" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivnost međuspremnika" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Pročitaj zahtjeve" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Zahtjevi zapisivanja" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Propuštena čitanja" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Zapisivanje čeka" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Propuštena čitanja pri %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Zapisivanje čeka pri %" @@ -7066,8 +7077,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7084,132 +7095,132 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Uredi postavke za %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Vrsta izvoza" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binarno" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovno pokreni umetanje s %s redaka" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7261,7 +7272,7 @@ msgstr "" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7555,7 +7566,7 @@ msgstr "Opcije tablice" msgid "Rename table to" msgstr "Preimenuj tablicu u" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Pogon pohrane" @@ -7676,8 +7687,8 @@ msgstr "Dobro došli u %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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" @@ -7753,21 +7764,21 @@ msgstr "Pogrešno korisničko ime ili lozinka. Pristup odbijen." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autentifikacija..." @@ -7929,20 +7940,21 @@ msgstr "Raspoložive MIME vrste" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Računalo" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Vrijeme generiranja" @@ -8187,7 +8199,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV unosu unutar retka %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Naziv tablice" @@ -8474,7 +8486,7 @@ msgstr "Izrada PDF datoteka" msgid "Displaying Column Comments" msgstr "Prikazivanje stupca komentara" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Pretvaranje preglednika" @@ -8541,7 +8553,7 @@ msgstr "Ukloni sve oznake" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8552,8 +8564,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8576,31 +8588,31 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Varijabla" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID poslužitelja" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8609,34 +8621,34 @@ msgstr "Bilo koji korisnik" msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generiraj lozinku" @@ -8706,7 +8718,7 @@ msgstr "Detalji..." msgid "Event name" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Vrsta događaja" @@ -9106,7 +9118,7 @@ msgstr "U bazi podataka nisu pronađene tablice." msgid "There are no events to display." msgstr "Provjeri tablicu" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9116,7 +9128,7 @@ msgstr "Provjeri tablicu" msgid "The %s table doesn't exist!" msgstr "Tablica \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9163,101 +9175,101 @@ msgstr "Atributi" msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Izradi novu stranicu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interne relacije" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Odaberite tablicu za uređivanje" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Odaberite tablice" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Odaberite tablice" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nazivi stupaca" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Shema relacija" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tablice" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Prikazati sve tablice uz istu širinu?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Rječnik podataka" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Izrada" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Veličina papira" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9265,7 +9277,7 @@ msgstr "" "Trenutna stranica sadrži reference prema tablicama koje više ne postoje. " "Želite li izbrisati te reference?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Uključi bilješke" @@ -9574,7 +9586,7 @@ msgstr "Korisnici koji imaju pristup u \"%s\"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Korisnik" @@ -9717,8 +9729,8 @@ msgstr "Pregled korisnika" 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 " @@ -9785,11 +9797,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -9884,7 +9896,7 @@ msgstr "" "SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " "potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" @@ -9897,12 +9909,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" @@ -9934,14 +9946,14 @@ msgid "Column %s has been dropped" msgstr "Tablica %s je odbačen" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primarni" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9951,7 +9963,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Puni tekst" @@ -9979,7 +9991,7 @@ msgstr "Prikaz relacija" msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9991,7 +10003,7 @@ msgstr "Morate dodati najmanje jedno polje." msgid "Add column" msgstr "Dodaj %s polja" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -10016,15 +10028,15 @@ msgstr "Poslije %s" msgid "Create an index on  %s columns" msgstr "Izradi indeks  %s stupaca" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistike redova" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamički" @@ -10032,15 +10044,15 @@ msgstr "dinamički" msgid "partitioned" msgstr "particionirano" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Duljina retka" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Veličina retka" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10090,15 +10102,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Podaci" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Iskorištenost prostora" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Na snazi" @@ -10139,7 +10151,7 @@ msgstr "" msgid "Move column" msgstr "Ukloni stupac / stupce" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10148,11 +10160,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:145 msgid "Transformation options" msgstr "Opcije preoblikovanja" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10164,36 +10176,36 @@ msgstr "" "jednostruki navodnik (\"'\") unutar ovih vrijednosti, ispred znaka stavite " "lijevu kosu crtu (na primjer: '\\\\xyz' ili 'a\\'B')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "bez kompresije" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Kako je definirano:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definicija PARTICIJE" @@ -10408,7 +10420,7 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nema baza podataka" @@ -10723,29 +10735,29 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Prikaži pune upite" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Naziv zapisnika" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Položaj" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Izvorni položaj" @@ -10753,7 +10765,7 @@ msgstr "Izvorni položaj" msgid "Character Sets and Collations" msgstr "Tablica znakova i uspoređivanja" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10762,24 +10774,24 @@ msgstr[0] "Baza podataka %s uspješno je odbačena." msgstr[1] "Baza podataka %s uspješno je odbačena." msgstr[2] "Baza podataka %s uspješno je odbačena." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistike baza podataka" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Omogući statistike" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10852,51 +10864,51 @@ msgstr "Privilegije su uspješno učitane." msgid "Unknown error" msgstr "Nepoznata greška" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspješno učitane." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10905,279 +10917,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Odaberite bazu podataka" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Puni tekst" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Puni tekst" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo strukturu" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo strukturu" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "greške." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Hvatišta" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Pohrana upita" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Grane" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Odgođena umetanja" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Pohrana ključeva" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Spojevi" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Preslagivanje" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinator transakcije" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Isprazni (zatvori) sve tablice" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Prikaži otvorene tablice" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Prikaži potčinjena računala" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Prikaži stanje potčinjenog" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Isprazni pohranu upita" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Podaci o razini izvršavanja" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Broj polja" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Osvježi" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Datoteke" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ne mijenjaj lozinku" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tablice" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtriraj po kategoriji" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tablice" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11185,57 +11197,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL poslužitelj radi tijekom %s. Pokrenut je %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11244,47 +11256,47 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Primljeno" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Poslano" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Naredba" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11294,17 +11306,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Broj transakcija koje su upotrebljavale privremeni binarni zapisnik pohrane." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11316,11 +11328,11 @@ msgstr "" "moglo bi biti potrebno da povećate vrijednost tmp_table_size, kako biste " "privremene tablice smjestili u radnu memoriju, a ne na tvrdi disk." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11328,7 +11340,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11336,7 +11348,7 @@ msgstr "" "Broj redaka upisanih pomoću naredbe INSERT DELAYED, a kod kojih je došlo do " "neke vrste pogreške (vjerojatan razlog je udvojen ključ)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11344,23 +11356,23 @@ msgstr "" "Broj hvatište grana INSERT DELAYED u upotrebi. Svaka druga tablica na koju " "se primjeni INSERT DELAYED dobiva vlastitu granu." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Brojka koja prokazuje koliko puta je redak bio izbrisan iz tablice." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11370,7 +11382,7 @@ msgstr "" "tablicu s traženim nazivom. Ovaj se postupak naziva otkrivanje. " "Handler_discover naznačuje koliko je puta tablica bila otkrivenom." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11380,7 +11392,7 @@ msgstr "" "broj je pokazatelj da poslužitelj izvodi mnogo potpunih pretraživanja " "indeksa, npr. SELECT col1 FROM foo, pri čemu je col1 indeksiran." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11388,7 +11400,7 @@ msgstr "" "Broj zahtjeva za čitanje retka zasnovan na ključu. Velik broj je pokazatelj " "da su vaši upiti i tablice pravilno indeksirani." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11398,7 +11410,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11406,7 +11418,7 @@ msgstr "" "Broj zahtjeva za čitanje prethodnog retka u redoslijedu ključa. Ovaj način " "čitanja uglavnom se upotrebljava za optimiziranje opcije ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11418,7 +11430,7 @@ msgstr "" "Vjerojatno imate mnogo upita koji zahtijevaju da MySQL pretražuje cjelokupne " "tablice ili imate spojeve koji ne upotrebljavaju ključ na pravilan način." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11430,36 +11442,36 @@ msgstr "" "naznačuje da vaša tablice nisu pravilno indeksirane ili da vaši upiti nisu " "napisani na način koji iskorištava prednosti raspoloživih indeksa." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Broj stranica međuspremnika za koje je podnesen zahtjev za pražnjenjem." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11469,7 +11481,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11481,11 +11493,11 @@ msgstr "" "je vrijednost moguće izračunati i kao Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11493,7 +11505,7 @@ msgstr "" "Broj \"nasumičnih\" pripremnih čitanja koje je InnoDB inicijalizirao. Događa " "se kad upit mora pretražiti veliki dio tablice, ali nasumičnim redoslijedom." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11501,11 +11513,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11513,7 +11525,7 @@ msgstr "" "Broj logičkih čitanja koje InnoDB nije mogao zadovoljiti iz međuspremnik i " "morao je izvesti čitanje po jedne stranice." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11527,55 +11539,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj dvostrukih zapisivanja do ovog trenutka i broj stranica zapisanih za " "ovu potrebu." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11584,35 +11596,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11621,52 +11633,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vrijeme utrošeno na postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Broj okolnosti kad je bilo potrebno čekati na zaključanost retka." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11674,7 +11686,7 @@ msgstr "" "Broj ključnih blokova u pohrani ključeva koji su izmijenjeni ali još nisu " "ispražnjeni na disk. Nekoć se nazivalo: Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11682,7 +11694,7 @@ msgstr "" "Broj neiskorištenih blokova u pohrani ključeva. Ovu vrijednost možete " "upotrijebiti za određivanje veličine pohrane ključeva koja je u upotrebi." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11692,17 +11704,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahtjeva za čitanje ključnog bloka iz pohrane." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11713,26 +11725,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahtjeva za zapisivanje ključnog bloka u pohranu." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih zapisivanja ključnih blokova na disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11742,17 +11754,17 @@ msgstr "" "upita. Korisno za uspoređivanje troškova različitih planova upita za isti " "upit. Zadana vrijednost je 0 i podrazumijeva da još nema složenog upita." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redaka koji čekaju svoje upisivanje u red čekanja INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11760,39 +11772,39 @@ msgstr "" "Broj tablica koje su otvorene. Ako je iznos otvorenih tablica velik, vaša " "vrijednost za pohranu tablica vjerojatno je premala." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih protoka (uglavnom se upotrebljava za vođenje zapisnika)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11805,7 +11817,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11813,19 +11825,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11833,12 +11845,12 @@ msgstr "" "Broj spojeva koji ne upotrebljavaju indekse. Ako ovaj iznos nije 0, bit će " "potrebno da pažljivo provjerite indekse vaših tablica." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Broj spojeva koji nad referentnom tablicom upotrebljavaju opseg traženja." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11847,7 +11859,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11855,17 +11867,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su izveli potpuno pretraživanje prve tablice." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Broj privremenih tablica koje su trenutno otvorene od strane potčinjene SQL " "grane." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11873,12 +11885,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Uključeno (ON) ako je ovaj poslužitelj potčinjen i povezan na gospodara." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11886,14 +11898,14 @@ msgstr "" "Broj grana kojima je bilo potrebno više vremena za izradu, nego što je to " "definirano u slow_launch_time (sporo vrijeme pokretanja), u sekundama." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Broj upita kojima je bilo potrebno više vremena nego što je to definirano u " "long_query_time (dugo vrijeme upita), u sekundama." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11903,23 +11915,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Broj preslagivanja učinjenih pomoću pretraživanja tablice." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11931,7 +11943,7 @@ msgstr "" "problema s performansama, bit će potrebno da prvo optimizirate svoje upite i " "potom ili podijelite svoje tablice ili upotrijebite replikaciju." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11941,11 +11953,11 @@ msgstr "" "kao Threads_created/Connections. Ako je ovaj iznos prikazan crvenom bojom, " "bit će potrebno da povećate svoju vrijednost thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11957,70 +11969,70 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/Izbriši stupce polja" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Resetiraj na zadano" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12029,7 +12041,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12037,18 +12049,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12056,11 +12068,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12068,92 +12080,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Preimenuj bazu podataka u" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Odaberite tablice" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tablice" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statistike redova" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Odaberite tablice" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12162,7 +12174,7 @@ msgstr[0] "po sekundi" msgstr[1] "po sekundi" msgstr[2] "po sekundi" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12285,19 +12297,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Varijable i postavke poslužitelja" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Opća vrijednost" @@ -12592,44 +12604,44 @@ msgstr "" msgid "Wrong data" msgstr "Nema baza podataka" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generirano s" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12789,17 +12801,17 @@ msgstr "Prikaz ispisa" msgid "Index name:" msgstr "Naziv indeksa:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u indeks  %s stupci" @@ -12971,40 +12983,40 @@ msgstr "Vrsta izvoza" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Deactivate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiviraj sada" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Izradi relaciju" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" @@ -13370,8 +13382,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13505,8 +13517,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14646,8 +14658,8 @@ msgstr "najv. uzastopnih veza" #~ "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 0ed23cb519..f6471315de 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-19 09:42+0200\n" "Last-Translator: Akos Eros \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: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Összes megjelenítése" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Oldalszám:" @@ -39,36 +39,36 @@ 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:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Keresés" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Keresés" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Indítás" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Kulcsnév" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Leírás" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Ezen érték használata" @@ -119,18 +119,18 @@ msgstr "A(z) %1$s adatbázis elkészült." msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Tábla megjegyzése" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Oszlop" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Oszlop" msgid "Type" msgstr "Típus" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Típus" msgid "Null" msgstr "Nulla" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Nulla" msgid "Default" msgstr "Alapértelmezett" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Alapértelmezett" msgid "Links to" msgstr "Hivatkozás" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Hivatkozás" msgid "Comments" msgstr "Megjegyzések" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Megjegyzések" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nem" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Nem" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Igen" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Mind kijelölése" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Minden kijelölés törlése" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, " "hogy miért, kattintson %side%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Tábla" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Sorok" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Méret" @@ -346,7 +346,7 @@ msgstr "használatban" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Létrehozás" @@ -354,7 +354,7 @@ msgstr "Létrehozás" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Utolsó frissítés" @@ -362,7 +362,7 @@ msgstr "Utolsó frissítés" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Utolsó ellenőrzés" @@ -377,7 +377,7 @@ msgstr[1] "%s táblák" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Átváltás a %svizuális tervezőre%s" @@ -409,9 +409,9 @@ msgstr "Nyomon követett táblák" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Adatbázis" @@ -429,66 +429,66 @@ msgstr "frissítve" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Állapot" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Művelet" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Megjelenítés" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Tábla nyomkövetési adatainak törlése" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Eldobás" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktív" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "nem aktív" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Verziók" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nem követett táblák" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tábla nyomon követése" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Adatbázis Log" @@ -504,12 +504,12 @@ msgstr "Fájlban kell menteni a kiválasztott exportálási típust!" msgid "Bad parameters!" msgstr "Rossz paraméterek!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, 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:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -522,7 +522,7 @@ msgstr "" 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:788 +#: export.php:792 #, 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." @@ -531,119 +531,126 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." msgid "Invalid export type" msgstr "Érvénytelen export típus" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" oszlop értéke" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps használata alaprétegként" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Pont" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%d. pont" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Pont hozzáadása" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Sorok vége" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Külső gyűrű" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Belső gyűrű" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Új sorvég hozzáadása" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Belső gyűrű hozzáadása" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Sokszög" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Sokszög hozzáadása" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Geometria hozzáadása" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Kimenet" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Válassza a \"GeomFromText\"-et a \"Függvény\" oszlopból és illessze be az " "alábbi karakterláncot az \"Érték\" mezőbe" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " -"%sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" +"sdokumentációban%s a korlátozás feloldása végett." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -652,7 +659,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:400 +#: import.php:404 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 " @@ -662,31 +669,31 @@ msgstr "" "vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb " "méretet. Lásd [a@./Documentation.html#faq1_16@Documentation]GYIK 1.16.[/a].." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nem konvertálható a fájl karakterkészlete a karakterkészlet konvertáló " "könyvtár nélkül" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -694,7 +701,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:513 +#: import.php:517 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." @@ -703,9 +710,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Az SQL-lekérdezés végrehajtása sikerült" @@ -719,7 +726,7 @@ msgstr "Vissza" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -729,7 +736,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Do you really want to execute \"%s\"?" msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -769,7 +776,7 @@ msgstr "Index hozzáadása" msgid "Edit Index" msgstr "Index szerkesztése" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "%d oszlop hozzáadása az indexhez" @@ -819,24 +826,24 @@ msgstr "Bezárás" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Módosítás" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Élő forgalomgrafikon" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -848,24 +855,24 @@ msgstr "Statikus adat" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Összesen" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Egyéb" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -885,7 +892,7 @@ msgstr "Szerverforgalom (KiB-ban)" msgid "Connections since last refresh" msgstr "Kapcsolatok a legutóbbi frissítés óta" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Folyamatok" @@ -903,7 +910,7 @@ msgstr "Kérdések a legutóbbi frissítés óta" msgid "Questions (executed statements by the server)" msgstr "Kérdések (a kiszolgáló által végrehajtott lekérdezések)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Lekérdezések statisztikája" @@ -947,13 +954,13 @@ msgstr "Rendszer lapozófájl" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1005,32 +1012,32 @@ msgstr "Bájt elküldve" msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Kapcsolatok" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1044,11 +1051,11 @@ msgstr "%d tábla" msgid "Questions" msgstr "Kérdések" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Beállítások" @@ -1069,12 +1076,12 @@ msgid "Please add at least one variable to the series" msgstr "Legalább egy változót adjon meg a sorozathoz" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nincs" @@ -1172,7 +1179,7 @@ msgstr "Beállítások megváltoztatása" msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Diagramcím" @@ -1254,7 +1261,7 @@ msgstr "A kimenet magyarázata" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Idő" @@ -1350,8 +1357,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" @@ -1574,12 +1581,12 @@ msgstr "A lekérdezés végrehajtási ideje" msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Mentés" @@ -1641,8 +1648,8 @@ msgstr "Műveletek a lekérdezési eredménnyel" msgid "Data point content" msgstr "Adatmutató mérete" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Kihagyás" @@ -1747,7 +1754,7 @@ msgstr "Sor(ok) frissítése" msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generálás" @@ -1846,63 +1853,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec." @@ -1940,32 +1947,32 @@ msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Szo" @@ -2081,16 +2088,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "másodpercenként" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "percenként" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "óránként" @@ -2107,7 +2114,7 @@ msgstr "Max: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentáció" @@ -2130,14 +2137,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Hiba" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2155,83 +2162,83 @@ msgstr "SQL-lekérdezés" msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Lekérdezés indítása" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Frissítés" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL érvényesítése" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "lekérdezés inline szerkesztése" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Adatgyűjtés" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Vas" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Hiányzó paraméter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2239,24 +2246,24 @@ msgctxt "First page" msgid "Begin" msgstr "A tetejére" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Előző" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Következő" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2264,107 +2271,107 @@ msgctxt "Last page" msgid "End" msgstr "Vége" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Szerkezet" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Beszúrás" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Tartalom" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Műveletek" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Válasszon a szerver feltöltési könyvtárából %s :" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Kiürítés" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Végrehajtás" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Nyomtatás" @@ -2381,105 +2388,105 @@ msgstr "" msgid "Font size" msgstr "Betűméret" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Növekvő" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Csökkenő" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Rendezés" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Feltételek" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Feltételsor hozzáadása/törlése" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Oszlopok hozzáadása/törlése" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Lekérdezés frissítése" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Felhasználandó táblák" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Vagy" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "És" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Beszúrás" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Törlés" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Módosítás" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "legalább az egyik szó" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "minden szó" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "a pontos kifejezés" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "reguláris kifejezésként" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Keresési eredmények \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Összesen: %s találat" msgstr[1] "Összesen: %s találat" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2488,44 +2495,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Törlés" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Keresés az adatbázisban" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Keresés:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "A szavak elválasztása szóköz karakterrel (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Belső táblák:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Mezőben:" @@ -2575,8 +2582,8 @@ msgstr "Végrehajtás minden" msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2657,7 +2664,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Leállít" @@ -2676,11 +2683,11 @@ msgstr "lekérdezésben" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2690,7 +2697,7 @@ msgstr "Megjelenített sorok:" msgid "total" msgstr "összesen" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" @@ -2701,7 +2708,7 @@ msgstr "a lekérdezés %01.4f másodpercig tartott" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" @@ -2711,8 +2718,8 @@ msgstr "A kijelöltekkel végzendő művelet:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Mind kijelölése" @@ -2750,17 +2757,17 @@ msgstr "Nem található a hivatkozás" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2768,27 +2775,27 @@ 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:279 +#: libraries/File.class.php:285 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:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2796,11 +2803,11 @@ msgstr "" "Hiba történt a feltöltött fájl áthelyezésekor, lásd [a@./Documentation." "html#faq1_11@Documentation]GyIK 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2809,68 +2816,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nincs meghatározott index!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexek" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Illesztés" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Megjegyzés" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Az elsődleges kulcs eldobása megtörtént" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "A(z) %s index eldobása megtörtént" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2881,12 +2888,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Adatbázisok" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Kiszolgáló" @@ -2954,18 +2961,18 @@ msgstr "Felhasználók" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Bináris napló" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Többszörözés" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Változók" @@ -3102,8 +3109,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Függvény" @@ -3113,11 +3120,11 @@ msgstr "Függvény" msgid "Operator" msgstr "Kezelő" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Érték" @@ -3127,66 +3134,66 @@ msgstr "Érték" msgid "Table Search" msgstr "Keresés" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Szerkesztés/Beszúrás" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Válasszon oszlopokat (legalább egyet):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Sorok száma oldalanként" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Megjelenítési sorrend:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "A megjelenítendő sorok száma" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "További keresési feltételek" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" "Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Hogyan kell használni" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3261,14 +3268,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3521,7 +3528,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Táblák" @@ -3535,12 +3542,12 @@ msgstr "Táblák" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Adatok" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Felülírás" @@ -3648,7 +3655,7 @@ msgstr "Nyitott" msgid "Closed" msgstr "Zárt" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3787,22 +3794,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Ez a beállítás le van tiltva, nem lesz alkalmazva az Ön konfigurációjában" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Adja meg az értéket: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Alapértelmezett érték visszaállítása" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Engedélyezi a felhasználóknak az érték módosítását" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Visszaállítás" @@ -4092,7 +4099,7 @@ msgstr "A fájl karakterkészlete" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formátum" @@ -4201,7 +4208,7 @@ msgstr "Feliratkulcs" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-típus" @@ -4237,7 +4244,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Idézőjelek használata a tábla- és mezőneveknél" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL kompatibilitási mód" @@ -5849,10 +5856,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Szükséges az SQL Validator engedélyezése" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6117,7 +6124,7 @@ msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6125,48 +6132,56 @@ msgstr "" "A kiszolgáló nem válaszol (vagy a helyi kiszolgáló socket nincs megfelelően " "beállítotva)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "A kiszolgáló nem válaszol." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Részletek..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem " "sikerült." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Jelszó megváltoztatása" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nincs jelszó" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Újraírás" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Jelszó kivonatolása" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibilis" @@ -6298,8 +6313,8 @@ msgstr ", @TABLE@ lesz a 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése a(z) %1$sstrftime%2$s használatával " "történik, vagyis időformázó karakterláncokat használhat. Továbbá a következő " @@ -6381,71 +6396,71 @@ msgstr "Verzió létrehozása" msgid "authored on %1$s by %2$s" msgstr "Verzió létrehozása" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Az importált fájl formátuma" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importálás a jelenlegi kiszolgálóra" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importálás a(z) \"%s\" adatbázisba" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importálás a(z) \"%s\" táblába" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Az importálandó fájl:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "A fájl lehet tömörített (%s) vagy tömörítetlen." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6532,71 +6547,71 @@ msgstr "" "Az InnoDB által a táblák adatainak és indexeinek gyorsítótárazásához " "használt memóriapuffer mérete." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB állapota" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Pufferkészlet kihasználtsága" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "lapok" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Szabad lapok" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Piszkos lapok" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Adatokat tartalmazó lapok" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Kiírandó oldalak" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Foglalt oldalak" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Zárolt oldalak" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Pufferkészlet művelete" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Olvasási kérések" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Írási kérések" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Olvasási hibák" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Írási várakozások" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Olvasási hibák %-ban" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Írási várakozások %-ban" @@ -6830,8 +6845,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6850,128 +6865,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Nem található adat a grafikonhoz" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ugrás az adatbázishoz" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s adatai hiányoznak" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to table: %s" msgstr "Ugrás az adatbázishoz" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s szerkezete" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Elrejtés" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Bináris" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "A hossza miatt ez az
oszlop talán nem szerkeszthető" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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." -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7015,7 +7030,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7304,7 +7319,7 @@ msgstr "Tábla beállításai" msgid "Rename table to" msgstr "Tábla átnevezése" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Tárolómotor" @@ -7418,11 +7433,11 @@ msgstr "Üdvözli a %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7499,21 +7514,21 @@ msgstr "Hibás felhasználónév/jelszó. A hozzáférés megtagadva." msgid "Can not find signon authentication script:" msgstr "Beállítás hitelesítés" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "A(z) %s fájl nem tartalmaz semmilyen kulcsazonosítót" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "A hardveres hitelesítés nem sikerült" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Hitelesítés..." @@ -7654,20 +7669,21 @@ msgstr "MIME-típusok megjelenítése" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Hoszt" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Létrehozás ideje" @@ -7923,7 +7939,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Érvénytelen oszlopszám a CSV bemenet %d. sorában." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tábla neve" @@ -8193,7 +8209,7 @@ msgstr "PDF készítése" msgid "Displaying Column Comments" msgstr "Oszlopmegjegyzések megjelenítése" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Böngésző átalakítása" @@ -8270,7 +8286,7 @@ msgstr "Kijelölés törlése" msgid "Slave configuration" msgstr "Szerverbeállítások" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8281,8 +8297,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8303,31 +8319,31 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Változó" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Szerver AZ" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Bármilyen felhasználó" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8336,27 +8352,27 @@ msgstr "Bármilyen felhasználó" msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8365,7 +8381,7 @@ msgstr "" "A Host tábla használatakor ez a mező mellőzésre kerül, s a Host táblában " "lévő értékek kerülnek felhaszsnálásra." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Jelszó generálása" @@ -8424,7 +8440,7 @@ msgstr "Részletek" msgid "Event name" msgstr "Eseménynév" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Esemény típusa" @@ -8802,7 +8818,7 @@ msgstr "Nem található %1$s nevű esemény a(z) %2$s adatbázisban" msgid "There are no events to display." msgstr "Nincsen megjeleníthető esemény." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8811,7 +8827,7 @@ msgstr "Nincsen megjeleníthető esemény." msgid "The %s table doesn't exist!" msgstr "A(z) \"%s\" tábla nem létezik!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8857,93 +8873,93 @@ msgstr "Tulajdonságok" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Új oldal készítése" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Oldal neve" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatikus elrendezés" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Válassza ki a szerkesztendő oldalt" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Oldal kiválasztása" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Táblák kiválasztása" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Oszlopnevek" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Kapcsolati séma megjelenítése" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Rács megjelenítése" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Szín megjelenítése" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "A táblák méretének megjelenítése" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Az összes tábla megjelenítése ugyanolyan szélességgel" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Adatkönyvtár" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Csak a kulcsok megjelenítése" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Fekvő" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Álló" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Tájolás" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papírméret" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8951,7 +8967,7 @@ msgstr "" "A jelenlegi oldalon lévő táblahivatkozások már léteznek. Szeretné törölni " "ezeket a hivatkozásokat?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Scratchboard kapcsolása" @@ -9260,7 +9276,7 @@ msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Felhasználó" @@ -9397,13 +9413,13 @@ msgstr "Felhasználók áttekinté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 "" "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." #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9459,11 +9475,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopok" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 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:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 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 " @@ -9559,11 +9575,11 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" @@ -9576,12 +9592,12 @@ msgstr "Nyomkövetés aktív." msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" @@ -9609,14 +9625,14 @@ msgid "Column %s has been dropped" msgstr "A(z) %s oszlop eldobása megtörtént" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Elsődleges" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9626,7 +9642,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Teljes szöveg" @@ -9652,7 +9668,7 @@ msgstr "Kapcsolat nézete" msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." @@ -9660,7 +9676,7 @@ msgstr "Legalább egy oszlopot kell hozzáadnia." msgid "Add column" msgstr "Oszlop hozzáadása" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s oszlop hozzáadása" @@ -9683,15 +9699,15 @@ msgstr "%s után" msgid "Create an index on  %s columns" msgstr "Index készítése a(z)  %s oszlopokon" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Sorstatisztika" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statikus" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamikus" @@ -9699,15 +9715,15 @@ msgstr "dinamikus" msgid "partitioned" msgstr "particionált" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Sor hossza" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Sor mérete" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9755,15 +9771,15 @@ msgstr "SPATIAL Index hozzáadása" msgid "Add FULLTEXT index" msgstr "FULLTEXT index hozzáadása" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Információ" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Területhasználat" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Hatásos" @@ -9799,7 +9815,7 @@ msgstr "" msgid "Move column" msgstr "Oszlop(ok) eltávolítása" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9808,11 +9824,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:145 msgid "Transformation options" msgstr "Átalakítás beállításai" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9824,34 +9840,34 @@ msgstr "" "akar beszúrni az értékekbe, akkor kezdje fordított perjellel (például: '\\" "\\xyz' vagy 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM vagy SET adat túl nagy?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Nincs" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Mint meghatározva:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s után" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION definíció" @@ -10065,7 +10081,7 @@ msgstr "" "A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen " "utána a %sdokumentációban%s." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nincs adatbázis" @@ -10314,8 +10330,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"További beállításokat állíthat be a config.inc.php modosításával, pl. " -"%sBeállító parancsfájl%s használatával." +"További beállításokat állíthat be a config.inc.php modosításával, pl. %" +"sBeállító parancsfájl%s használatával." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -10357,29 +10373,29 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Fájlok" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Napló neve" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozíció" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Eredeti pozíció" @@ -10387,7 +10403,7 @@ msgstr "Eredeti pozíció" msgid "Character Sets and Collations" msgstr "Karakterkészletek és illesztések" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10395,24 +10411,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "A(z) %s adatbázis eldobása sikerült." msgstr[1] "A(z) %s adatbázis eldobása sikerült." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Adatbázis-statisztika" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Statisztika engedélyezése" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10482,52 +10498,52 @@ msgstr "A jogok újratöltése sikerült." msgid "Unknown error" msgstr "Ismeretlen hiba" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "A jogok újratöltése sikerült." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 #, fuzzy msgid "Master configuration" msgstr "Szerverbeállítások" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10536,123 +10552,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Kérjük válasszon adatbázist:" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 #, fuzzy msgid "Control slave:" msgstr "Kontrollfelhasználó" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Teljes szöveg" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Csak a szerkezet" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Csak a szerkezet" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Következő átugrása" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10660,142 +10676,142 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Kezelő" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Lekérdezési gyorsítótár" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Szálak" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Ideiglenes adatok" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Késleltetett beszúrások" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Kulcs gyorsítótár" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Illesztések" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Rendezés" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Tranzakció koordinátor" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Összes tábla kiírása (bezárása)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Kisegítő állapot megjelenítése" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Lekérdezési gyorsítótár kiírása" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Futtatási információk" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Sorok száma:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Frissítési időköz: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Szűrő" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Tartalmazza ezt a szót:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Csak a figyelmeztető értékek megjelenítése" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Formázatlan értékek megjelenítése" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Kapcsolódó hivatkozások:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Elemző futtatása" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Utasítások" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10803,46 +10819,46 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "A kezdőlap testreszabása" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Utasítások" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ez a MySQL szerver %1$s óta fut. Indítás időpontja: %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10850,11 +10866,11 @@ msgstr "" "A szerveren lévő többszörözéses állapotról a többszörözés részben kaphat bővebb információt." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10862,47 +10878,47 @@ msgstr "" "Foglalt szerveren túlfuthatnak a bájtszámlálók, ezért a MySQL által " "jelentett statisztikák pontatlanok lehetnek." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Fogadott" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Küldött" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "AZ" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Parancs" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10912,17 +10928,17 @@ msgstr "" "használt, azonban az túllépte a binlog_cache_size méretet, és ideiglenes " "fájlt használt az utasítások tárolásához a tranzakcióból." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Az ideiglenes bináris naplógyorsítótár által használt tranzakciók száma." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10934,11 +10950,11 @@ msgstr "" "nagy, akkor növelheti a tmp_table_size értékét, mely az ideiglenes táblákból " "memóriaalapúakat csinál a lemezalapú helyett." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10946,7 +10962,7 @@ msgstr "" "A szerver által az utasítások végrehajtásakor automatikusan létrehozott, a " "memóriában tárolt ideiglenes táblák száma." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10954,7 +10970,7 @@ msgstr "" "Az INSERT DELAYED utasítással írt sorok száma, melyeknél néhány hiba történt " "(valószínűleg ismétlődő kulcs)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10962,23 +10978,23 @@ msgstr "" "A használatban lévő INSERT DELAYED kezelőszálak száma. Minden eltérő " "táblának, melyen valaki INSERT DELAYED parancsot használ, saját szála lesz." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Egy sornak a táblázatból történő törléseinek a száma." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10988,7 +11004,7 @@ msgstr "" "megadott nevű táblát. Ezt hívják felfedezésnek. A handler_discover jelzi a " "táblák felfedezésének számát." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10999,7 +11015,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11007,7 +11023,7 @@ msgstr "" "Egy sor kulcs alapján történő beolvasási kéréseinek száma. Ha ez magas, " "akkor jól mutatja, hogy a lekérdezések és a táblák megfelelően indexeltek." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11017,7 +11033,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11025,7 +11041,7 @@ msgstr "" "A kulcssorrendben előző sort beolvasandó kérések száma. Ezt a beolvasási " "módszert főleg az ORDER BY ... DESC optimalizálásához használják." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11037,7 +11053,7 @@ msgstr "" "Valószínűleg sok olyan lekérdezés van, s a MySQL-nek teljes táblákat kell " "megvizsgálnia, vagy a kulcsokat nem megfelelően használó illesztések vannak." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11049,35 +11065,35 @@ msgstr "" "hogy a táblák nem megfelelően indexeltek, vagy a lekérdezések nincsenek írva " "az indexek kihasználása végett." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "A kérések száma egy táblában lévő sor frissítéséhez." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "A kérések száma egy táblában lévő sor beszúrásához." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "A pufferkészlet oldalainak száma, melyeket kiírásra kértek." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11087,7 +11103,7 @@ msgstr "" "írás alatt lévő oldalak, melyeket bizonyos más okok miatt nem lehet kiírni " "vagy eltávolítani." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11100,11 +11116,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11113,7 +11129,7 @@ msgstr "" "akkor történik, ha egy lekérdezés meg akarja vizsgálni egy tábla nagy " "részét, viszont véletlenszerű sorrendben." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11121,11 +11137,11 @@ msgstr "" "Az InnoDB által kezdeményezett sorozatos előreolvasások száma. Ez akkor " "történik, mikor az InnoDB sorozatos teljes táblavizsgálatot tart." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Az InnoDB által elvégzett logikai olvasási kérések száma." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11133,7 +11149,7 @@ msgstr "" "A logikai olvasások száma, melyeket az InnoDB nem tudott a pufferkészletből " "kielégíteni, s egyoldalas beolvasást végzett." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11148,53 +11164,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Az InnoDB pufferkészletébe történt írások száma." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "A végrehajtott duplaírásos írások száma, s az e célból kiírt oldalak száma." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11202,35 +11218,35 @@ msgstr "" "Várakozások száma, amiket a naplópuffer kis mérete okozott és folytatás " "előtt meg kellett várni a kiírást." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "A naplófájlba történt fizikai írások száma." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsync() írások száma." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11239,51 +11255,51 @@ msgstr "" "került számolásra az oldalakban; az oldal mérete teszi lehetővé a bájtokká " "történő könnyű átalakítást." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "A jelenleg várakozás alatt lévő sorzárolások száma." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges átlag időtartam, milliszekundumban." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "A sorzároláshoz szükséges időtartam, milliszekundumban." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "A sorzárolásra váráshoz szükséges alkalmak száma." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Az InnoDB táblákból törölt sorok száma." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11291,7 +11307,7 @@ msgstr "" "A kulcsgyorsítótárban lévő kulcsblokkok száma, melyek megváltoztak, de még " "nem kerültek lemezre kiírásra. Ez Not_flushed_key_blocks néven ismert." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11299,7 +11315,7 @@ msgstr "" "A kulcsgyorsítótárban lévő, nem használt blokkok száma. Ezzel az értékkel " "állapíthatja meg, hogy mennyire van használatban a kulcsgyorsítótár." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11308,17 +11324,17 @@ msgstr "" "A kulcsgyorsítótárban lévő használt blokkok száma. Ez az érték egy maximális " "jel, mely a valamikor használatban volt blokkok számát jelzi." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Az importált fájl formátuma" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "A gyorsítótárból egy kulcsblokk beolvasásához szükséges kérések száma." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11329,26 +11345,26 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "A kérések száma egy kulcsblokk gyorsítótárba történő írásához." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Egy kulcsblokk lemezre történő fizikai írásainak száma." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11359,17 +11375,17 @@ msgstr "" "költségének lekérdezéséhez hasznos. Az alapértelmezett 0 érték azt jelenti, " "hogy lekérdezés lefordítására még nem került sor." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Az INSERT DELAYED sorokban írásra várakozó sorok száma." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11377,40 +11393,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagyok, akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Az adatfolyamok száma, melyek nyitottak (főleg a naplózáshoz kerül " "felhasználásra)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "A szabad memória mérete a lekérdezési gyorsítótárhoz." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11423,7 +11439,7 @@ msgstr "" "lekérdezési gyorsítótár a legrégebben használt (LRU) stratégiával dönti el, " "hogy mely lekérdezéseket kell eltávolítani a gyorsítótárból." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11431,19 +11447,19 @@ msgstr "" "A nem gyorsítótárazott lekérdezések száma (nem gyorsítótárazható, vagy nem " "gyorsítótárazott a query_cache_type beállítás miatt)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "A blokkok száma a lekérdezési gyorsítótárban." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "A hibabiztos többszörözések állapota (megvalósításra vár)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11451,11 +11467,11 @@ msgstr "" "Az indexeket nem használó illesztések száma. Ha ez az érték nem 0, akkor " "ellenőrizze körültekintően a táblák indexeit." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Egy hivatkozási táblán tartománykeresést használt illesztések száma." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11464,7 +11480,7 @@ msgstr "" "használatát ellenőrzik. (Ha ez nem 0, akkor ellenőrizze körültekintően a " "táblák indexeit.))" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11472,15 +11488,15 @@ msgstr "" "Az első táblán tartományokat használt illesztések száma. (Normál esetben ez " "nem súlyos, még ha túl nagy is ez.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Az első tábla teljes vizsgálatát elvégzett illesztések száma." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "A kisegítő SQL szál által épp megnyitott ideiglenes táblák száma." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11488,11 +11504,11 @@ msgstr "" "A többszörözésben kisegítő SQL szál (az indítás óta) ennyiszer próbálta újra " "a tranzakciókat." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ez BE, ha ez főszerverhez csatlakoztatott kisegítő szerver." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11500,14 +11516,14 @@ msgstr "" "A szálak száma, melyek létrehozásához slow_launch_time másodpercnél többre " "volt szükség." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "A lekérdezések száma, melyekhez long_query_time másodpercnél többre volt " "szükség." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11517,23 +11533,23 @@ msgstr "" "végeznie. Ha ez az érték nagy, akkor gondolja meg a sort_buffer_size " "rendszerváltozó értékének növelését." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "A tábla vizsgálatával végrehajtott rendezések száma." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Ennyiszer nem lehetett azonnal megszerezni egy táblazárolást." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11545,7 +11561,7 @@ msgstr "" "optimalizálja a lekérdezéseket, majd vagy ossza fel a táblát vagy táblákat, " "vagy használja a többszörözést." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11555,11 +11571,11 @@ msgstr "" "Threads_created/Connections alapján számítható ki. Ha ez az érték piros, " "akkor növelnie kell a thread_cache_size méretét." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11570,66 +11586,66 @@ msgstr "" "nagy, akkor növelheti a thread_cache_size értékét. (Normál esetben ez nem " "növeli jelentősen a teljesítményt, ha jó szálmegvalósítása van.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nyomkövetés inaktív." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Indítás" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Diagram hozzáadása" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Frissítési időköz" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Diagram oszlopai" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Visszaállítás az alapértékre" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "Információ" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11638,7 +11654,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11646,18 +11662,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11665,11 +11681,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11677,100 +11693,100 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Adatbázis eltávolítása" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Táblák kiválasztása" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Érvénytelen táblanév" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Új szerver hozzáadása" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-lekérdezések" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Naplóstatisztikák" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Táblák kiválasztása" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lekérdezés típusa" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d másodperc" msgstr[1] "%d másodperc" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11886,19 +11902,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Szerver változók és beállítások" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Munkamenet értéke" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globális változó" @@ -12261,42 +12277,42 @@ msgstr "" msgid "Wrong data" msgstr "Hibás adat" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-eredmény" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Készítette" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Név" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12449,18 +12465,18 @@ msgstr "Szerkesztő mód" msgid "Index name:" msgstr "Index neve:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Index típusa:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Hozzáadás az index  %s oszlophoz" @@ -12624,41 +12640,41 @@ msgstr "Exportálás: %s" msgid "Show versions" msgstr "Verziók megjelenítése" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Inaktiválás" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Inaktiválás" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "%s adatai hiányoznak" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiválás" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Verzió létrehozása" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Verzió létrehozása" @@ -13014,8 +13030,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13146,8 +13162,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14193,8 +14209,8 @@ msgstr "Max. egyidejű kapcsolatok száma" #~ "No themes support; please check your configuration and/or your themes in " #~ "directory %s." #~ msgstr "" -#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) " -#~ "%s könyvtárban." +#~ "Nincs téma támogatás, ellenőrizze a beállításokat és/vagy a témákat a(z) %" +#~ "s könyvtárban." #~ msgid "Switch to" #~ msgstr "Váltás" diff --git a/po/hy.po b/po/hy.po index 76657002da..6660654a54 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-06-18 16:41+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: none\n" -"Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Show all" msgstr "Ցույց տալ բոլորը" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "էջի համարը՝" @@ -40,36 +40,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Որոնում" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Որոնում" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Ինդեքսի անվանումը" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Նկարագրություն" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Օգտագործել այս արժեքը" @@ -120,18 +120,18 @@ msgstr "%1$s տվյալների բազան ստեղծված է։" msgid "Database comment: " msgstr "Տվյալների բազայի մեկնաբանությունը՝ " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Աղյուսակի մեկնաբանությունը" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Աղյուսակի մեկնաբանությունը" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Սյուն" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Սյուն" msgid "Type" msgstr "Տեսակ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Տեսակ" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Լռելյան" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Լռելյան" msgid "Links to" msgstr "Կապեր" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Կապեր" msgid "Comments" msgstr "Մեկնաբանություններ" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Մեկնաբանություններ" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ոչ" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Ոչ" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Այո" @@ -275,45 +275,45 @@ msgid "View dump (schema) of database" msgstr "Ցուցադրել տվյալների բազայի dump-ը (սխեման)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Տվյալների բազայում աղյուսակներ չկան։" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Նշել բոլորը" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Հանել նշումը" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Տվյալների բազայի անունն նշված չէ" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s տվյալների բազան վերանված է %2$s-ի" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s տվյալների բազան պատճենված է %2$s-ում" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -323,14 +323,14 @@ msgstr "Աղյուսակ" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Տողեր" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Ծավալը" @@ -343,7 +343,7 @@ msgstr "օգտագործվում է" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Ստեղծում" @@ -351,7 +351,7 @@ msgstr "Ստեղծում" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Վերջին թարմացումը" @@ -359,7 +359,7 @@ msgstr "Վերջին թարմացումը" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Վերջին ստուգումը" @@ -373,7 +373,7 @@ msgstr[0] "%s աղյուսակ" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -405,9 +405,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Տվյալների բազա" @@ -425,66 +425,66 @@ msgstr "Թարմացված է" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Վիճակը" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Գործողություն" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Ցուցադրել" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Հեռացնել" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "միացված է" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "անջատված է" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Տարբերակներ" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Կառուցվածքի պատկերը" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -500,12 +500,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Սխալ պարամետրեր" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -516,7 +516,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -525,160 +525,160 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -692,7 +692,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -701,7 +701,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -791,24 +791,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -818,24 +818,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "" @@ -855,7 +855,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -873,7 +873,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -915,13 +915,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -973,32 +973,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1012,11 +1012,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1037,12 +1037,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1135,7 +1135,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1215,7 +1215,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1305,8 +1305,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1517,12 +1517,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1578,8 +1578,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1775,63 +1775,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1869,32 +1869,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2007,16 +2007,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2033,7 +2033,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2056,14 +2056,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2081,210 +2081,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Կատարել հարցումը" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Թերթել" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Դատարկել" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2301,147 +2301,147 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Աճման կարգով" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Նվազման կարգով" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Դասավորել" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Չափորոշիչ" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Լրացնել հարցումը" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Օգտագործել աղյուսակներ" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Կամ" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Եվ" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Տեղադրել" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Հեռացնել" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Փոփոխել" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "բառերից ցանկանցածը" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "բոլոր բառերը" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "ճիշտ համընկնում" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "կանոնավոր արտահայտություն" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "«%s» որոնման արդյունքները %s՝" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Ընդհանուր՝ %s համընկնում" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Հեռացնել" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Որոնումը տվյալների բազայում" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Գտնել՝" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Բառերն առանձնացվում են (« »)։" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Աղյուսակներ՝" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Սյուներ՝" @@ -2486,8 +2486,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2564,7 +2564,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2581,8 +2581,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2593,7 +2593,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2604,7 +2604,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Նշվածները՝" @@ -2614,8 +2614,8 @@ msgstr "Նշվածները՝" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Նշել բոլորը" @@ -2653,51 +2653,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2706,66 +2706,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Համեմատումը" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2774,12 +2774,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2847,18 +2847,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Վերարադրում" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -2987,8 +2987,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -2998,11 +2998,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3010,60 +3010,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3136,14 +3136,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3386,7 +3386,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3400,12 +3400,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3507,7 +3507,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3645,22 +3645,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3925,7 +3925,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4034,7 +4034,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4070,7 +4070,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5502,10 +5502,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5755,52 +5755,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5930,8 +5938,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6005,69 +6013,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6143,71 +6151,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6398,8 +6406,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6414,123 +6422,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6574,7 +6582,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6861,7 +6869,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -6975,8 +6983,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7046,21 +7054,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7197,20 +7205,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7435,7 +7444,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7635,7 +7644,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7701,7 +7710,7 @@ msgstr "Հանել նշումը" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7712,8 +7721,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7733,31 +7742,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7766,34 +7775,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7852,7 +7861,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8190,7 +8199,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8199,7 +8208,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8245,97 +8254,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Տվյալների բառարան" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8627,7 +8636,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8760,8 +8769,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8818,11 +8827,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8904,7 +8913,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s աղյուսակն դատարկված է" @@ -8917,12 +8926,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s ներկայացումն հեռացված է" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s աղյուսակն հեռացված է" @@ -8950,14 +8959,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8967,7 +8976,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -8991,7 +9000,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -8999,7 +9008,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9022,15 +9031,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9038,15 +9047,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9092,15 +9101,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9127,18 +9136,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9146,33 +9155,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9346,7 +9355,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9621,29 +9630,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9651,31 +9660,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9743,49 +9752,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9794,255 +9803,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10050,115 +10059,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10166,78 +10175,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10245,7 +10254,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10253,42 +10262,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10296,33 +10305,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10331,242 +10340,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10574,99 +10583,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10674,18 +10683,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10693,61 +10702,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10756,7 +10765,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10764,18 +10773,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10783,11 +10792,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10795,86 +10804,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -10990,19 +10999,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11286,42 +11295,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11452,16 +11461,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11620,38 +11629,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -11985,8 +11994,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12104,8 +12113,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/id.po b/po/id.po index a8f3f9e921..4d008a1c5e 100644 --- a/po/id.po +++ b/po/id.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:48+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" "X-Poedit-Basepath: ../../..\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Nomor halaman:" @@ -41,36 +41,36 @@ msgstr "" "menutup jendela induk atau pilihan keamanan pada peramban Anda mencekal " "pembaruan lintas-jendela" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Cari" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Kirim" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nama kunci" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Deskripsi" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Gunakan nilai ini" @@ -121,18 +121,18 @@ msgstr "Basis data %1$s telah dibuat." msgid "Database comment: " msgstr "Komentar basis data: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Komentar tabel" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Kolom" msgid "Type" msgstr "Jenis" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Jenis" msgid "Null" msgstr "Kosong" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Kosong" msgid "Default" msgstr "Bawaan" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Bawaan" msgid "Links to" msgstr "Tautan ke" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Tautan ke" msgid "Comments" msgstr "Komentar" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Komentar" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Tidak" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -276,35 +276,35 @@ msgid "View dump (schema) of database" msgstr "Tampilkan dump (skema) basis data" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tidak ada tabel dalam basis data." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Pilih Semua" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Lepas Semua" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Nama basis data kosong!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Nama basis data %s telah diubah menjadi %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Basis data %s telah disalin ke %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -313,12 +313,12 @@ msgstr "" "Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu " "mengapa klik %sdi sini%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -328,14 +328,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Baris" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Ukuran" @@ -348,7 +348,7 @@ msgstr "sedang digunakan" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Pembuatan" @@ -356,7 +356,7 @@ msgstr "Pembuatan" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Pembaruan terakhir" @@ -364,7 +364,7 @@ msgstr "Pembaruan terakhir" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Pemeriksaan terakhir" @@ -378,7 +378,7 @@ msgstr[0] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Anda harus memiliih paling tidak satu kolom untuk ditampilkan" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alihkan ke %spembangun visual%s" @@ -410,9 +410,9 @@ msgstr "Tabel yang dilacak" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Basis data" @@ -430,66 +430,66 @@ msgstr "Diperbarui" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Tindakan" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Tampilkan" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Hapus" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "tidak aktif" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versi" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Snapshot struktur" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabel yang tidak dilacak" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Lacak tabel" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Log Basis Data" @@ -505,12 +505,12 @@ msgstr "Jenis ekspor yang diipilih harus disimpan dalam berkas!" msgid "Bad parameters!" msgstr "Pembatasan yang buruk!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Server web tidak memiliki hak akses untuk menyimpan berkas %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." @@ -532,117 +532,124 @@ msgstr "Dump (Skema) disimpan pada berkas %s." msgid "Invalid export type" msgstr "Jenis ekspor invalid" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Nilai untuk kolom \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gunakan OpenStreetMaps sebagai Lapisan Dasar" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Titik" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Titik %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Tambahkan titik" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Segmen garis" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Lingkar Luar" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Lingkar Dalam" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Tambahkan segmen garis" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Tambahkan lingkar dalam" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Tambahkan poligon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Tambahkan geometri" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Keluaran" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya " "ke dalam isian \"Value\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat " -"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat %" +"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Tampilkan markah" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Markah telah dihapus." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Gagal membaca berkas" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,7 @@ msgstr "" "Anda mencoba untuk memuat berkas dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: import.php:400 +#: import.php:404 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 " @@ -662,27 +669,27 @@ msgstr "" "konfigurasi PHP Anda. Lihat [a@./Documentation.html#faq1_16@Documentation]" "FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Tidak dapat mengubah set karakter berkas tanpa pustaka konversi set karakter" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Markah %s dibuat" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impor telah berhasil menyelesaikan,%d kueri dieksekusi." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -690,7 +697,7 @@ msgstr "" "Script sudah melewati timeout, jika Anda ingin menyelesaikan proses impor, " "harap kirim ulang arsip yang sama dan proses impor akan berlanjut." -#: import.php:513 +#: import.php:517 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." @@ -699,9 +706,9 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kueri SQL Anda berhasil dieksekusi" @@ -717,7 +724,7 @@ msgstr "" "Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung " "frame." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." @@ -727,7 +734,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." msgid "Do you really want to execute \"%s\"?" msgstr "Benarkah Anda ingin untuk " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS seluruh basis data!" @@ -767,7 +774,7 @@ msgstr "Tambah indek" msgid "Edit Index" msgstr "Mengedit Indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Tambahkan %d kolom ke index" @@ -817,24 +824,24 @@ msgstr "Tutup" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edit" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Bagan lalu lintas langsung" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Bagan koneksi/proses langsung" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Bagan kueri langsung" @@ -844,24 +851,24 @@ msgstr "Data statis" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Lainnya" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -881,7 +888,7 @@ msgstr "Lalu lintas server (dalam KB)" msgid "Connections since last refresh" msgstr "Koneksi sejak dibuka terakhir" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Proses Aktif" @@ -899,7 +906,7 @@ msgstr "Perintah sejak penyegaran terakhir" msgid "Questions (executed statements by the server)" msgstr "Pertanyaan (statement yang dieksekusi server)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistik kueri" @@ -945,13 +952,13 @@ msgstr "Swap sistem" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1003,32 +1010,32 @@ msgstr "Bita dikirim" msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Koneksi" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1042,11 +1049,11 @@ msgstr "%d tabel" msgid "Questions" msgstr "Perintah" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Pengaturan" @@ -1067,12 +1074,12 @@ msgid "Please add at least one variable to the series" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Tidak ada" @@ -1172,7 +1179,7 @@ msgstr "Ubah pengaturan" msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Judul Bagan" @@ -1262,7 +1269,7 @@ msgstr "Jelaskan hasil" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Waktu" @@ -1361,8 +1368,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" @@ -1585,12 +1592,12 @@ msgstr "Waktu eksekusi kueri" msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Simpan" @@ -1650,8 +1657,8 @@ msgstr "Operasi hasil pertanyaan" msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Abaikan" @@ -1763,7 +1770,7 @@ msgstr "Perbarui baris" msgid "Generate password" msgstr "Hasilkan kata sandi" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Hasilkan" @@ -1862,63 +1869,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Des" @@ -1956,32 +1963,32 @@ msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2098,16 +2105,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per detik" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per menit" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "dalam sejam" @@ -2124,7 +2131,7 @@ msgstr "Batas ukuran: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentasi" @@ -2147,14 +2154,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Galat" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Pencarian SQL" @@ -2172,211 +2179,211 @@ msgstr "Pencarian SQL" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Gagal melakukan koneksi ke validator SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Jelaskan SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Buat kode PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Kirim Kueri" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Segarkan" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Lewati Validasi SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validasi SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Edit langsung kueri ini di tempat" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Edit di tempat" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profil" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Minggu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y pada %H.%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parameter yang hilang:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Awal" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Sebelumnya" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Berikutnya" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Akhir" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Langsung ke basis data "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Tambahkan" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Jelajahi" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operasi" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" # Imperative menu -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Kosongkan" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Eksekusi" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Cetak" @@ -2394,104 +2401,104 @@ msgstr "" msgid "Font size" msgstr "Ukuran huruf" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Menurun" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Urutan" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Tambahkan/Hapus baris kriteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Tambahkan/Hapus kolom" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Perbarui Kueri" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Gunakan Tabel" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Atau" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Dan" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Tambahkan" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Hapus" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ubah" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Kueri SQL pada basis data %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "paling tidak satu kata" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "semua kata" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "frasa tepat" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "persamaan reguler" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil pencarian untuk \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s cocok" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2499,44 +2506,44 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s cocok dalam tabel %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Hapus" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Cari dalam basis data" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Kata atau hasil untuk dicari (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Cari:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Kata dipisahkan oleh karakter spasi (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dalam tabel:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dalam kolom:" @@ -2582,8 +2589,8 @@ msgstr "Judul setiap %s baris" msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2662,7 +2669,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Tutup" @@ -2681,11 +2688,11 @@ msgstr "dalam susunan pemeriksaan" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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. Harap lihat " -"%sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %" +"sdokumentasi%s" #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2695,7 +2702,7 @@ msgstr "Tampilan baris" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Pencarian dilakukan dalam %01.4f detik" @@ -2706,7 +2713,7 @@ msgstr "Pencarian dilakukan dalam %01.4f detik" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Dengan pilihan:" @@ -2716,8 +2723,8 @@ msgstr "Dengan pilihan:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Pilih Semua" @@ -2755,43 +2762,43 @@ msgstr "Tautan tidak ditemukan" msgid "Too many error messages, some are not displayed." msgstr "Terlalu banyak pesan kesalahan, sebagian tidak bisa ditampilkan." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "File bukan file unggah." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Berkas yang diunggah melewati ketentuan upload_max_filesize dalam php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Berkas yang diunggah melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Berkas yang diunggah hanya terunggah sebagian." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Gagal menulis berkas ke diska." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Pengunggahan berkas dihentikan oleh ekstensi." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Galat tidak dikenal sewaktu mengunggah berkas." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2799,11 +2806,11 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq1_11@Documentation]FAQ 3.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Terjadi galat sewaktu memindahkan berkas unggahan." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Tidak bisa membaca (memindah) file unggah." @@ -2812,68 +2819,68 @@ msgstr "Tidak bisa membaca (memindah) file unggah." msgid "Open new phpMyAdmin window" msgstr "Buka jendela phpMyAdmin baru" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini cookies harus diaktifkan." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Mulai dari sini cookies harus diaktifkan." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Indeks belum ditentukan!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitas" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Penyortiran" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Kunci primer telah dihapus" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah dihapus" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2884,12 +2891,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Basis data" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2957,18 +2964,18 @@ msgstr "Pengguna" msgid "Synchronize" msgstr "Sinkronisasi" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Log biner" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikasi" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabel" @@ -3108,8 +3115,8 @@ msgstr "" "terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika " "struktur tabel telah berubah." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fungsi" @@ -3119,11 +3126,11 @@ msgstr "Fungsi" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Nilai" @@ -3131,62 +3138,62 @@ msgstr "Nilai" msgid "Table Search" msgstr "Pencarian Tabel" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Edit/Tambah" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Pilih kolom (paling tidak satu):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tambahkan kriteria pencarian (bagian klausa \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Jumlah baris per halaman" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Urutan tampilan:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Kriteria pencarian tambahan" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Lakukan \"kueri dengan contoh\" (wildcard: \"%\") untuk dua kolom yang " "berbeda" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri dengan contoh\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Cara pakai" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3261,14 +3268,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3521,7 +3528,7 @@ msgstr "dibagi" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabel" @@ -3535,12 +3542,12 @@ msgstr "Tabel" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Beban" @@ -3651,7 +3658,7 @@ msgstr "Buka" msgid "Closed" msgstr "Tutup" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3791,22 +3798,22 @@ msgstr "" "Pengaturan ini tidak diaktifkan, pengaturan tidak akan diterapkan pada " "konfigurasi anda" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Tetapkan nilai: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Kembalikan nilai bawaan" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Izinkan pengguna untuk mengubah nilai ini" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Reset" @@ -4091,7 +4098,7 @@ msgstr "Set karakter berkas" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4200,7 +4207,7 @@ msgstr "Kunci nama" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Jenis MIME" @@ -4237,7 +4244,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Apit nama tabel dan kolom dengan tanda petik balik" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modus kompatibilitas SQL" @@ -5702,10 +5709,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5957,7 +5964,7 @@ msgstr "Ekstensi %s tidak ditemukan. Harap periksa konfigurasi PHP Anda." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -5965,47 +5972,55 @@ msgstr "" "Server tidak merespons (atau soket server lokal tidak dikonfigurasi dengan " "benar)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Server tidak merespons." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Harap periksa hak akses direktori basis data." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Rincian..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Ubah Sandi" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ketik ulang" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Pengernaian Kata Sandi (Password Hashing)" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Kompatibel MySQL 4.0" @@ -6135,8 +6150,8 @@ msgstr ", @TABLE@ akan menjadi nama 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6212,71 +6227,71 @@ msgstr "Buat versi %s dari %s.%s" msgid "authored on %1$s by %2$s" msgstr "Buat versi %s dari %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Format berkas impor" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Mengimpor ke dalam server saat ini" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Mengimpor ke dalam basis data \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Mengimpor ke dalam tabel \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Berkas untuk Diimpor:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Dapat berupa berkas terkompresi (%s) atau tidak." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6361,71 +6376,71 @@ msgstr "" "Besar penyangga memori yang digunakan oleh InnoDB untuk menyinggahkan data " "dan indeks dari tabelnya." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Status InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Penggunaan Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "halaman" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Halaman yang bebas" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Halaman yang kotor" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Halaman yang berisi data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Halaman yang akan dibersihkan" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Halaman yang sibuk" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Halaman yang dipalang" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivitas Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Permintaan pembacaan" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Permintaan penulisan" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Pembacaan yang kelewat" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Penundaan penulisan" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Pembacaan yang kelewat dalam %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Penundaan penulisan dalam %" @@ -6633,8 +6648,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6649,128 +6664,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Tuju ke basis data" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Edit pengaturan %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Tuju ke tabel" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktur %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Tuju ke view" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Sembunyikan" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Karena panjangnya,
isian ini mungkin tidak dapat diedit" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Biner - jangan diedit" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -6814,7 +6829,7 @@ msgstr "Tambahkan prefiks tabel" msgid "Add prefix" msgstr "Tambahkan prefiks" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7103,7 +7118,7 @@ msgstr "Pilihan untuk tabel" msgid "Rename table to" msgstr "Ubah nama tabel menjadi" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Mesin Penyimpanan" @@ -7217,11 +7232,11 @@ msgstr "Selamat Datang di %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " -"%1$ssetup script%2$s untuk membuatnya." +"Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan %1" +"$ssetup script%2$s untuk membuatnya." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7297,21 +7312,21 @@ msgstr "Nama pengguna/kata sandi salah. Akses ditolak." msgid "Can not find signon authentication script:" msgstr "Tidak dapat menemukan script otentikasi signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Arsip %s tidak mengandung key id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Autentikasi perangkat keras gagal" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Tidak ada kunci autentikasi yang terpasang" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Mengautentikasi..." @@ -7448,20 +7463,21 @@ msgstr "Tampilkan jenis MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Inang" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Waktu pembuatan" @@ -7692,7 +7708,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nama tabel" @@ -7939,7 +7955,7 @@ msgstr "Pembuatan PDF" msgid "Displaying Column Comments" msgstr "Tampilkan komentar kolom" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformasi Browser" @@ -8007,7 +8023,7 @@ msgstr "Lepas Semua" msgid "Slave configuration" msgstr "Konfigurasi slave" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Ubah atau konfigurasikan ulang server master" @@ -8018,8 +8034,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8039,31 +8055,31 @@ msgid "Slave status" msgstr "Status slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID Server" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Tambahkan pengguna replikasi slave" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Setiap pengguna" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8072,34 +8088,34 @@ msgstr "Setiap pengguna" msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Semua inang" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Inang Ini" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Menghasilkan kata sandi" @@ -8158,7 +8174,7 @@ msgstr "Detail" msgid "Event name" msgstr "Nama event" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Jenis event" @@ -8499,7 +8515,7 @@ msgstr "Event dengan nama %1$s tidak ditemukan dalam basis data %2$s" msgid "There are no events to display." msgstr "Tidak ada event untuk ditampilkan." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8508,7 +8524,7 @@ msgstr "Tidak ada event untuk ditampilkan." msgid "The %s table doesn't exist!" msgstr "Tabel %s tidak ditemukan!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8554,91 +8570,91 @@ msgstr "Atribut" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Buat halaman" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nama halaman" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Tata letak otomatis berdasarkan" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relasi internal" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Harap pilih halaman untuk diubah" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Pilih halaman" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Pilih tabel" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nama kolom" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Tampilkan skema relasi" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Tampilkan garis" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Tampilkan warna" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Tampilkan ukuran dari tabel" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Tampilkan seluruh tabel dengan lebar yang sama" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Kamus Data" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Hanya tampilkan kunci" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Gambaran" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientasi" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Ukuran kertas" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8646,7 +8662,7 @@ msgstr "" "Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda " "ingin hapus referensi yang bersangkutan?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "pindah buku catatan (Scratchboard)" @@ -8955,7 +8971,7 @@ msgstr "Pengguna memiliki akses ke "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Pengguna" @@ -9093,8 +9109,8 @@ msgstr "Ikhtisar 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 " @@ -9156,11 +9172,11 @@ msgstr "Bersihkan" msgid "Columns" msgstr "Kolom" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses markah ini" @@ -9255,7 +9271,7 @@ msgstr "" "Validator SQL tidak dapat dijalankan. Harap periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" @@ -9268,12 +9284,12 @@ msgstr "Pelacakan aktif" msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "View %s telah dihapus" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" @@ -9301,14 +9317,14 @@ msgid "Column %s has been dropped" msgstr "Kolom %s telah dihapus" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Kunci Utama" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9318,7 +9334,7 @@ msgid "Spatial" msgstr "Spasial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Teks penuh" @@ -9344,7 +9360,7 @@ msgstr "Tampilan relasi" msgid "Propose table structure" msgstr "Usulkan struktur tabel" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Anda perlu menambahkan paling tidak satu kolom." @@ -9352,7 +9368,7 @@ msgstr "Anda perlu menambahkan paling tidak satu kolom." msgid "Add column" msgstr "Tambah kolom" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Tambahkan %s kolom" @@ -9375,15 +9391,15 @@ msgstr "Setelah %s" msgid "Create an index on  %s columns" msgstr "Buat indeks pada  %s  kolom" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistik Baris" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamis" @@ -9391,15 +9407,15 @@ msgstr "dinamis" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Panjang baris" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Besar baris" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Indeks otomatis berikut" @@ -9447,15 +9463,15 @@ msgstr "Tambahkan indeks SPATIAL" msgid "Add FULLTEXT index" msgstr "Tambahkan indeks FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informasi" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Penggunaan ruang" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektif" @@ -9491,7 +9507,7 @@ msgstr "" msgid "Move column" msgstr "Hapus kolom" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9500,11 +9516,11 @@ msgstr "" "Untuk tampilan daftar tentang pilihan transformasi dan transformasi jenis " "MIME-nya, harap klik pada %sDeskripsi Transformasi%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Pilihan transformasi" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9516,34 +9532,34 @@ msgstr "" "Quote (\"'\") diperlukan di antara nilai tersebut, harap gunakan tanda " "Backslash (contoh: '\\\\xyz' atau 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Data ENUM atau SET terlalu panjang?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Dapatkan ruang pengeditan lebih luas" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Tidak ada" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Seperti yang didefinisikan" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Setelah %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definisi PARTITION" @@ -9736,7 +9752,7 @@ msgstr "" "Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk " "kemungkinan masalah." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Basis data tidak ditemukan" @@ -10018,29 +10034,29 @@ msgstr "Berkas tidak ditemukan" msgid "Select binary log to view" msgstr "Pilih log biner untuk ditampilkan" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Berkas" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Catat nama" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posisi" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posisi aslinya" @@ -10048,31 +10064,31 @@ msgstr "Posisi aslinya" msgid "Character Sets and Collations" msgstr "Set dan Penyortiran Karakter" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Sukses menghapus basis data %s." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistik basis data" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replikasi master" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replikasi slave" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Aktifkan Statistik" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10142,40 +10158,40 @@ msgstr "Hak akses berhasil dimuat ulang." msgid "Unknown error" msgstr "Galat tidak dikenal" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Tidak dapat tersambung ke master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Tidak dapat membaca posisi log master. Mungkin ada masalah hak akses pada " "master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Tidak dapat mengubah master." -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Server master berhasil diubah menjadi %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Server ini dikonfigurasikan sebagai master dalam proses replikasi." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Tampilkan status master" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Tampilkan slave yang tersambung" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10184,11 +10200,11 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai master dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Konfigurasi master" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10197,108 +10213,108 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replikasikan semua basis data; Abaikan:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Abaikan semua basis data; Replikasikan:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Harap pilih basis data:" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Thread SQL slave tidak berjalan!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Thread IO slave tidak berjalan!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server ini dikonfiguraskan sebagai slave dalam proses replikasi. Apakah Anda " "ingin:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Lihat tabel status slave" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sinkronkan basis data dengan master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kendalikan slave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Jalankan semua" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Hentikan semua" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reset slave" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Jalankan hanya Thread SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Hanya hentikan Thread SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Jalankan hanya Thread IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Hanya hentikan Thread IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Kelola galat:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Pengabaian galat dapat menyebabkan master dan slave tidak tersinkronisasi" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Lewati galat saat ini" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Lewati berikutnya" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "galat." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10307,12 +10323,12 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai slave dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10320,143 +10336,143 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Singgahan kueri" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Thread" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Data temporer" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Penambahan tunda" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Singgahan kunci" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Join" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Pengurutan" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinator transaksi" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Bersihkan (tutup) semua tabel" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Tampilkan tabel terbuka" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Tampilkan inang slave" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Tampilka status slave" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Bersihkan singgahan kueri" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informasi Waktu Eksekusi" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Semua variabel status" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Pemantauan" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Penasihat" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Jumlah baris:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Laju penyegaran: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Filter" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Mengandung kata:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Tampilkan hanya nilai peringatan" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filter menurut kategori..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Tampilkan nilai tanpa format" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Tautan terkait:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Jalankan penganalisis" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instruksi" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10464,32 +10480,32 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Perintah sejak awal: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Keterangan" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Lalu lintas jaringan sejak awal: %sw" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "Server MySQL ini telah berjalan selama %1$s. Server ini dijalankan pada %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10497,63 +10513,63 @@ msgstr "" "Server MySQL ini berfungsi sebagai master dan slave dalam " "proses replication." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Server MySQL ini berfungsi sebagai master dalam proses " "replication." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Server MySQL ini berfungsi sebagai slave dalam proses replication." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Status replikasi" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Penerimaan" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Koneksi konkuren maks." -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Pengguguran" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Perintah" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10561,11 +10577,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10575,16 +10591,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL (baik berhasil maupun tidak)." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10596,11 +10612,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10608,7 +10624,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10616,7 +10632,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10624,30 +10640,30 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10657,7 +10673,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10666,7 +10682,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10676,7 +10692,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10684,7 +10700,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10696,7 +10712,7 @@ msgstr "" "Anda mungkin memiliki banyak kueri yang mengharuskan MySQL memindai seluruh " "tabel atau Anda memiliki join yang tidak menggunakan kunci dengan baik." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10708,42 +10724,42 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10751,33 +10767,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10786,244 +10802,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Percentage of used open files limit" msgid "Percentage of used key cache (calculated value)" msgstr "Persentase limit berkas terbuka yang dipakai" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11031,99 +11047,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11131,18 +11147,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11150,63 +11166,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Jalankan Pemantauan" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Petunjuk/Penyiapan" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Selesai mengatur ulang/mengedit bagan" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Tambahkan bagan" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Atur ulang/edit bagan" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Laju penyegaran" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Kolom bagan" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Pengaturan bagan" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Kembalikan nilai bawaan" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instruksi Pemantauan" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11215,7 +11231,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11223,18 +11239,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11242,11 +11258,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Harap catat:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11254,85 +11270,85 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Bagan bawaan" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variabel status" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Pilih seri:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Biasa dipantau" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "atau masukkan nama variabel:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Tampilkan sebagai nilai diferensial" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Terapkan pemisah" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Sertakan satuan kepada nilai data" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Tambahkan seri ini" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Bersihkan seri" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Seri pada Bagan:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Statistik log" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Rentang waktu pilihan:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Penganalisis kueri" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d detik" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11449,19 +11465,19 @@ msgstr "" "Basis data target akan disinkronisasikan secara lengkap dengan basis data " "sumber. Basis data sumber tetap tidak berubah." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Pengaturan variabel gagal" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variabel dan pengaturan server" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Nilai sesi" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Nilai global" @@ -11749,42 +11765,42 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus." msgid "Wrong data" msgstr "Data salah" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL tervalidasi" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Diciptakan oleh" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Judul" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s berhasil diubah" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -11929,18 +11945,18 @@ msgstr "Modus edit" msgid "Index name:" msgstr "Nama indeks:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" harus menjadi nama dan hanya dipakai sebagai nama " "kunci primer!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Jenis indeks:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambahkan kolom  %s  pada indeks" @@ -12104,41 +12120,41 @@ msgstr "Ekspor sebagai %s" msgid "Show versions" msgstr "Tunjukkan Versi" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktifkan sekarang" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Buat versi %s dari %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Buat versi" @@ -12488,8 +12504,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12615,8 +12631,8 @@ msgstr "" #| "Rate of temporary tables being written to disk: %s, this value should be " #| "less than 1 per hour" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tingkat pembuatan tabel temporer ke diska: %s, nilai ini hasul kurang dari 1 " "per jam" diff --git a/po/it.po b/po/it.po index 064425cdf7..0b6fdca4a5 100644 --- a/po/it.po +++ b/po/it.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-31 21:39+0200\n" "Last-Translator: Rouslan Placella \n" -"Language-Team: Italian " -"\n" -"Language: it\n" +"Language-Team: Italian \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Numero pagina:" @@ -41,36 +41,36 @@ msgstr "" "bloccando gli aggiornamenti fra finestre a causa di qualche impostazione di " "sicurezza." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Cerca" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Cerca" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Esegui" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Chiave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descrizione" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Usa questo valore" @@ -121,18 +121,18 @@ msgstr "Il database %1$s è stato creato." msgid "Database comment: " msgstr "Commento del database: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Commenti alla tabella" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Campo" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Campo" msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Tipo" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Null" msgid "Default" msgstr "Predefinito" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Predefinito" msgid "Links to" msgstr "Collegamenti a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Collegamenti a" msgid "Comments" msgstr "Commenti" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Commenti" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "No" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "No" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sì" @@ -276,33 +276,33 @@ msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Seleziona tutto" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Il nome del database è vuoto!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Il database %1$s è stato rinominato come %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Il database %1$s è stato copiato come %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "Le opzioni di configurazione dello storage di phpMyAdmin sono state " "disabilitate. Per scoprire la ragione, clicca %squi%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Tabella" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Righe" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Dimensione" @@ -346,7 +346,7 @@ msgstr "in uso" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creazione" @@ -354,7 +354,7 @@ msgstr "Creazione" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Ultimo cambiamento" @@ -362,7 +362,7 @@ msgstr "Ultimo cambiamento" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Ultimo controllo" @@ -377,7 +377,7 @@ msgstr[1] "%s tabelle" msgid "You have to choose at least one column to display" msgstr "Devi scegliere almeno un campo da mostrare" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passa a %svisual builder%s" @@ -409,9 +409,9 @@ msgstr "Tabelle monitorate" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -429,66 +429,66 @@ msgstr "Aggiornato" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stato" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Azione" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostra" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Cancella dati di tracciamento per questa tabella" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "attivo" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "non attivo" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versioni" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Rapporto tracking" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Snapshot della struttura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabelle non monitorate" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Controlla tabella" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Log database" @@ -505,12 +505,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Parametri errati!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." @@ -532,118 +532,125 @@ msgstr "Il dump è stato salvato nel file %s." msgid "Invalid export type" msgstr "Tipo di esportazione non valido" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valore per il campo \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps come livello base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Aggiungi un punto" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Cerchio Esterno" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Cerchio Interno" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Aggiungi un poligono" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Aggiungi una geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Output" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Seleziona \"GeomFromText\" nella colonna \"Funzione\" ed incolla la stringa " "sottostante nel campo \"Valore\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " "questo limite." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Il bookmark è stato cancellato." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Il file non può essere letto" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -653,7 +660,7 @@ msgstr "" "supportato. Il supporto per questo tipo di compressione potrebbe non essere " "ancora stato implementato oppure è disabilitato nella tua configurazioni." -#: import.php:400 +#: import.php:404 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 " @@ -664,30 +671,30 @@ msgstr "" "configurazione di PHP per l'upload di un file. Vedi [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossibile convertire il set di caratteri del file in assenza di una " "libreria di conversione dei caratteri installata" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importazione eseguita con successo, %d query eseguite." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -695,7 +702,7 @@ msgstr "" "Superato il tempo limite per l'esecuzione dello script, se vuoi portare a " "termine l'importazione inoltra nuovamente il file ed il processo riprenderà." -#: import.php:513 +#: import.php:517 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." @@ -704,9 +711,9 @@ msgstr "" "evidenzia che il limite di tempo impostato nella configurazione è troppo " "basso per consentire a phpMyAdmin di terminare l'operazione." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "La query SQL è stata eseguita con successo" @@ -720,7 +727,7 @@ msgstr "Indietro" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funziona meglio con browser che supportano i frames." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." @@ -729,7 +736,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati." msgid "Do you really want to execute \"%s\"?" msgstr "Sei sicuro di voler eseguire \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!" @@ -769,7 +776,7 @@ msgstr "Aggiungi Indice" msgid "Edit Index" msgstr "Modifica Indice" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Aggiungi %d campo/i all'indice" @@ -819,24 +826,24 @@ msgstr "Chiudi" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Modifica" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Grafico del traffico in tempo reale" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Grafico delle connessioni e processi in tempo reale" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Grafico delle query in tempo reale" @@ -846,24 +853,24 @@ msgstr "Dati statici" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -883,7 +890,7 @@ msgstr "Traffico del server (in KiB)" msgid "Connections since last refresh" msgstr "Numero di connessioni dall'ultimo aggiornamento" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processi" @@ -901,7 +908,7 @@ msgstr "Numero di 'questions' dall'ultimo aggiornamento" msgid "Questions (executed statements by the server)" msgstr "Questions (instruzioni eseguiti dal server)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistiche query" @@ -948,13 +955,13 @@ msgstr "Swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1006,32 +1013,32 @@ msgstr "Byte inviati" msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Connessioni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1045,11 +1052,11 @@ msgstr "%d tabella/e" msgid "Questions" msgstr "Domande" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Impostazioni" @@ -1070,12 +1077,12 @@ msgid "Please add at least one variable to the series" msgstr "Aggiungi almeno una variabile alla serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nessuno" @@ -1175,7 +1182,7 @@ msgstr "Modifica impostazioni" msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Titolo del diagramma" @@ -1244,7 +1251,6 @@ msgid "Jump to Log table" msgstr "Vai alla tabella di Log" #: js/messages.php:180 -#| msgid "No data" msgid "No data found" msgstr "Nessun dato trovato" @@ -1266,7 +1272,7 @@ msgstr "Spiega l'output" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tempo" @@ -1288,7 +1294,6 @@ msgid "Chart" msgstr "Grafico" #: js/messages.php:191 -#| msgid "Add chart" msgid "Edit chart" msgstr "Modifica grafico" @@ -1364,8 +1369,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1586,12 +1591,12 @@ msgstr "Tempo di esecuzione della query" msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Salva" @@ -1653,8 +1658,8 @@ msgstr "Risultati della query" msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignora" @@ -1765,7 +1770,7 @@ msgstr "Aggiorna riga/righe" msgid "Generate password" msgstr "Genera password" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Genera" @@ -1864,63 +1869,63 @@ msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dic" @@ -1958,32 +1963,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2097,16 +2102,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "al secondo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "al minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "all'ora" @@ -2123,7 +2128,7 @@ msgstr "Dimensione massima: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentazione" @@ -2146,14 +2151,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Errore" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Query SQL" @@ -2171,210 +2176,210 @@ msgstr "Query SQL" msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Invia Query" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Aggiorna" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valida SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Modifica inline di questa query" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Inizio" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Precedente" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Prossima" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Ultima" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struttura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserisci" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Mostra" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operazioni" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Svuota" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Esegui" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Stampa" @@ -2393,105 +2398,105 @@ msgstr "" msgid "Font size" msgstr "Dimensione font" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Crescente" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Decrescente" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordinamento" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criterio" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Aggiungi/Cancella criterio di riga" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Aggiungi/Cancella campi" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Aggiorna Query" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Utilizza tabelle" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Oppure" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "E" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Aggiungi" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Elimina" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modifica" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "almeno una delle parole" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "tutte le parole" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "la frase esatta" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "come espressione regolare" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totale: %s corrispondenza" msgstr[1] "Totale: %s corrispondenze" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2500,44 +2505,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s corrispondenza nella tabella %2$s" msgstr[1] "%1$s corrispondenze nella tabella %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Elimina" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Cerca nel database" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Parole o valori da cercare (carattere jolly: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Cerca:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Le parole sono separate da spazi (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Nelle tabelle:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "All'interno del campo:" @@ -2583,8 +2588,8 @@ msgstr "Intestazioni ogni %s righe" msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2661,7 +2666,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Rimuovi" @@ -2680,8 +2685,8 @@ msgstr "nella query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -2694,7 +2699,7 @@ msgstr "Mostrando le righe" msgid "total" msgstr "totale" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" @@ -2705,7 +2710,7 @@ msgstr "La query ha impiegato %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Se selezionati:" @@ -2715,8 +2720,8 @@ msgstr "Se selezionati:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Seleziona tutti" @@ -2754,42 +2759,42 @@ msgstr "Link non trovato" msgid "Too many error messages, some are not displayed." msgstr "Troppi errori, alcuni messaggi non verranno visualizzati." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Il file non era un file caricato." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2797,11 +2802,11 @@ msgstr "" "Errore nello spostare il file caricato, vedi [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato." @@ -2810,66 +2815,66 @@ msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato." msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Da questo punto in poi, JavaScript deve essere abilitato" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nessun indice definito!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indici" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Codifica caratteri" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Commenti" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "La chiave primaria è stata eliminata" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "L'indice %s è stato eliminato" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2880,12 +2885,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Database" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2953,18 +2958,18 @@ msgstr "Utenti" msgid "Synchronize" msgstr "Sincronizza" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Log binario" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicazione" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabili" @@ -3101,8 +3106,8 @@ msgstr "" "saranno mantenuti se ricaricate questa pagina. Controllate se la struttura " "della tabella è cambiata." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funzione" @@ -3112,11 +3117,11 @@ msgstr "Funzione" msgid "Operator" msgstr "Operatore" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valore" @@ -3124,61 +3129,61 @@ msgstr "Valore" msgid "Table Search" msgstr "Ricerca nella Tabella" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Modifica/Inserisci" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Seleziona campi (almeno uno):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Numero di righe per pagina" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordine di visualizzazione:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Usate questo campo per etichettare ogni punto" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Massimo numero di righe da visualizzare" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Ulteriori criteri di ricerca" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Esegui \"query da esempio\" (carattere jolly: \"%\") per due campi differenti" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Esplora/Modifica i punti" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Come usare" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3254,14 +3259,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3512,7 +3517,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabelle" @@ -3526,12 +3531,12 @@ msgstr "Tabelle" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3638,7 +3643,7 @@ msgstr "Aperto" msgid "Closed" msgstr "Chiuso" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3778,22 +3783,22 @@ msgstr "" "Questa impostazione è disabilitata, non sarà applicata alla tua " "configurazione" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Imposta valore: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Ripristinare valori predefiniti" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Consente agli utenti di personalizzare questo valore" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Riavvia" @@ -4088,7 +4093,7 @@ msgstr "Codifica dei caratteri del file" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formato" @@ -4197,7 +4202,7 @@ msgstr "Chiave etichetta" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tipo MIME" @@ -4233,7 +4238,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Racchiudi i nomi di tabelle e di campi con virgolette" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modalità di compatibilità SQL" @@ -5848,10 +5853,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Richiede l'abilitazione del validatore SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6130,7 +6135,7 @@ msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP." msgid "possible deep recursion attack" msgstr "possibile attacco di ricorsione in profondità" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6138,47 +6143,55 @@ msgstr "" "Il server non risponde (o il socket del server locale MySQL non è " "correttamente configurato)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Il server non risponde." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Controllate i privilegi della cartella che contiene il database." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Dettagli..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Connessione per controluser come definito nella configurazione fallita." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Cambia password" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nessuna Password" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Reinserisci" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatibile con MySQL 4.0" @@ -6310,8 +6323,8 @@ msgstr ", @TABLE@ diventerá il nome della 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -6393,7 +6406,7 @@ msgstr "Crea versione %1$s di %2$s" msgid "authored on %1$s by %2$s" msgstr "Crea versione %1$s di %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6403,35 +6416,35 @@ msgstr "" "massima consentita o questo è un bug noto in browser basati su WebKit " "(Safari, Google Chrome, Arora, ecc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Formato del file importato" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Il file è in fase di elaborazione, vi preghiamo di essere pazienti." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6439,30 +6452,30 @@ msgstr "" "Pazienza mentre il file viene caricato. Dettagli sulla upload non sono " "disponibili." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importazione nel server corrente in corso" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importazione nel database \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importazione nella tabella \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "File da importare:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Il file può essere compresso (%s) o non compresso." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6550,71 +6563,71 @@ msgstr "" "La dimensione del buffer di memoria InnoDB memorizza dati e indici delle " "proprie tabelle." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stato InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Utilizzo del Buffer Pool" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pagine" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Pagine libere" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Pagine sporche" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pagine contenenti dati" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pagine che devono essere mandate in flush" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Pagine occupate" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Attività del Buffer Pool" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Richieste di lettura" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Richieste di scrittura" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Non letto" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "In attesa di scrittura" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Non letto in %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "In attesa di scrittura in %" @@ -6851,8 +6864,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -6869,127 +6882,127 @@ msgstr "Il Blog The PrimeBase XT Blog di Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Visualizza i contenuti della struttura facendo click sul suo nome" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Modifica la struttura seguendo il link \"Struttura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Vai al database: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Modifica impostazioni per %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Vai alla tabella: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struttura di %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Vai alla visualizzazione: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Nascondi" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" "A causa della lunghezza,
questo campo potrebbe non essere modificabile" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "directory di upload del web-server" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7033,7 +7046,7 @@ msgstr "Aggiungi un prefisso alla tabella" msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" @@ -7320,7 +7333,7 @@ msgstr "Opzioni della tabella" msgid "Rename table to" msgstr "Rinomina la tabella in" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Motore di Memorizzazione" @@ -7434,8 +7447,8 @@ msgstr "Benvenuto in %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7514,21 +7527,21 @@ msgstr "Nome utente o password errati. Accesso negato." msgid "Can not find signon authentication script:" msgstr "Impossibile ritrovare lo script per l'autenticazione signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Il file %s non contiente nessuna chiave id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Autenticazione hardware fallita" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nessuna chiave di autentificazione valida inserita" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autenticazione..." @@ -7667,20 +7680,21 @@ msgstr "Mostra tipi MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Generato il" @@ -7942,7 +7956,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Il numero dei campi non é valido nell'input CSV alla linea %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nome tabella" @@ -8207,7 +8221,7 @@ msgstr "Creazione di PDF" msgid "Displaying Column Comments" msgstr "Visualizzazione Commenti dei Campi" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Trasformazione del browser" @@ -8278,7 +8292,7 @@ msgstr "Deseleziona tutti" msgid "Slave configuration" msgstr "Configurazione slave" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Modifica o riconfigura il server master" @@ -8291,8 +8305,8 @@ msgstr "" "cnf). Altrimenti, aggiungi la linea seguente nella sezione [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8312,15 +8326,15 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabile" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID del server" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8328,17 +8342,17 @@ msgstr "" "Solo i slave eseguiti con l'opzione --report-host=host_name sono visibili in " "questa lista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Aggiungi un utente per replicazione slave" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Qualsiasi utente" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8347,27 +8361,27 @@ msgstr "Qualsiasi utente" msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8376,7 +8390,7 @@ msgstr "" "Quando la tabella Host è usata, questo campo è ignorato e i valori " "memorizzati nella tabella Host invece utilizzati." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Genera Password" @@ -8438,7 +8452,7 @@ msgstr "Dettagli" msgid "Event name" msgstr "Nome dell'evento" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tipo di evento" @@ -8791,7 +8805,7 @@ msgstr "Non é stata trovato alcun evento con nome %1$s nel database %2$s" msgid "There are no events to display." msgstr "Non ci sono eventi da visualizzare." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8800,7 +8814,7 @@ msgstr "Non ci sono eventi da visualizzare." msgid "The %s table doesn't exist!" msgstr "La tabella %s non esiste!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8846,91 +8860,91 @@ msgstr "Attributi" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Crea una nuova pagina" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nome della pagina" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Impaginazione automatica basata su" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relazioni interne" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Prego scegli una pagina da modificare" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Seleziona pagina" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Seleziona Tables" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nomi dei campi" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Visualizza lo schema relazionale" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Seleziona il Tipo di Esportazione Relazionale" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostra la griglia" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostra il colore" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostra la dimensione delle tabelle" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostra tutte le tabelle con la stessa larghezza" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dizionario dei dati" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Mostra solo le chiavi" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Orizzontale" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Verticale" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientamento" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Dimensioni carta" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8938,7 +8952,7 @@ msgstr "" "La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. " "Volete cancellare questi Riferimenti?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "(dis)attiva scratchboard" @@ -9242,7 +9256,7 @@ msgstr "Utenti che hanno accesso a "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Utente" @@ -9381,8 +9395,8 @@ msgstr "Vista d'insieme 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 " @@ -9443,11 +9457,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -9545,7 +9559,7 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" @@ -9558,12 +9572,12 @@ msgstr "Il tracking è attivo." msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" @@ -9591,14 +9605,14 @@ msgid "Column %s has been dropped" msgstr "Il campo %s è stato eliminato" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaria" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indice" @@ -9608,7 +9622,7 @@ msgid "Spatial" msgstr "Spatial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Testo completo" @@ -9634,7 +9648,7 @@ msgstr "Vedi relazioni" msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." @@ -9642,7 +9656,7 @@ msgstr "Devi aggiungere almeno un campo." msgid "Add column" msgstr "Aggiungi campo" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Aggiungi %s campo/i" @@ -9665,15 +9679,15 @@ msgstr "Dopo %s" msgid "Create an index on  %s columns" msgstr "Crea un indice su  %s campi" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistiche righe" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statico" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamico" @@ -9681,15 +9695,15 @@ msgstr "dinamico" msgid "partitioned" msgstr "partizionato" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Lunghezza riga" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Dimensione riga" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Prossimo autoindex" @@ -9735,15 +9749,15 @@ msgstr "Aggiungi indice SPATIAL" msgid "Add FULLTEXT index" msgstr "Aggiungi indice FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informazioni" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Spazio utilizzato" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effettivo" @@ -9778,7 +9792,7 @@ msgstr "" msgid "Move column" msgstr "Rimuovi campo/i" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9787,11 +9801,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:145 msgid "Transformation options" msgstr "Opzioni di transformazione" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9803,33 +9817,33 @@ msgstr "" "backslash (\"\\\") o un apostrofo (\"'\") tra questi valori, essi vanno " "backslashati (ad esempio '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Dati in ENUM o SET troppo lunghi?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Piú spazio per la modifica" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Nessuno" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Come definito:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "dopo %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definizione PARTITION" @@ -10036,10 +10050,10 @@ 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:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nessun database" @@ -10321,29 +10335,29 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "File" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostra query complete" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nome del log" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posizione" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posizione originale" @@ -10351,31 +10365,31 @@ msgstr "Posizione originale" msgid "Character Sets and Collations" msgstr "Set di Caratteri e Collation" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database é stato eliminato correttamente." msgstr[1] "%1$d databasi sono stati eliminati correttamente." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistiche dei databases" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replicazione master" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replicazione slave" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Abilita le Statistiche" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10445,41 +10459,41 @@ msgstr "I privilegi sono stati ricaricati con successo." msgid "Unknown error" msgstr "Errore sconosciuto" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Impossibile stabilire la connessione al master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossibile leggere il log posizionale del master. É possibile che ci siano " "dei problemi di permessi sul master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Impossibile modificare il master" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Il server master modificato con successo a %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Mostra lo stato del master" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Mostra i slave connessi" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10488,11 +10502,11 @@ msgstr "" "Questo server non é configurato come master in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configurazione del master" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10506,19 +10520,19 @@ msgstr "" "scegliere di ignorare tutti i database normalmente e consentire solo a certi " "database di essere replicati. Prego, scegli una modalitá:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replica tutti i database; Ignora:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignora tutti i database; Replica:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Prego seleziona i database:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10526,7 +10540,7 @@ msgstr "" "Ora, aggiungi le linee seguenti alla fine della sezione [mysqld] nel tuo " "file my.cnf e dopo riavvia is server MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10536,82 +10550,82 @@ msgstr "" "quindi vedere un messaggio che ti informerá che questo server é " "configurato come master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Thread slave SQL non é in esecuzione!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Thread slave IO non é in esecuzione!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Il server é configurato come slave in un processo di replicazione. Vuoi:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Vedi la tabella di stato dello slave" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sincronizza i database con il master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Controlla slave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Pieno avvio" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Pieno spegnimento" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reimposta lo slave" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Avvia solo il thread SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Arresta solo il thread SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Avvia solo il thread IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Arresta solo il thread IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Gestione degli errori:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorare gli errori potrebbe far mandare il master e slave fuori sincronia!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Salta l'errore corrente" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Salta il prossimo" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "errori." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10620,12 +10634,12 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10633,121 +10647,121 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Cache delle query" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Processi" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dati temporanei" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Inserimento ritardato" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Key cache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Ordinando" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordinatore delle transazioni" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Rinfresca (chiudi) tutte le tabelle" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Mostra le tabelle aperte" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Mostra lo stato degli slave" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Rinfresca la cache delle query" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informazioni di Runtime" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Tutte le variabili di stato" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitoraggio" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Advisor" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Numero di righe:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Ritmo dell'aggiornamento: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtri" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Contenente la parola:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Mostra solo i valori di allarme" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtra per categoria..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Mostra i valore non formattati" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Collegamenti associati:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Lancia l'analyzer" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Introduzioni" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10755,7 +10769,7 @@ msgstr "" "Il sistema Advisor può fornire raccomandazioni sulle variabili del server " "analizzando le variabili di stato del server." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10765,7 +10779,7 @@ msgstr "" "semplici calcoli e regole pratiche che non necessariamente si possono " "applicare al vostro sistema." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10776,7 +10790,7 @@ msgstr "" "cambiamento. Una regolazione sbagliata può avere effetti negativi sulle " "prestazioni." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10788,31 +10802,31 @@ msgstr "" "misurabile." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Questions eseguiti dall'avvio: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Traffico rete dall'avvio: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Questo server MySQL sta girando da %1$s. É stato avviato il %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10820,19 +10834,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Questo server MySQL funziona come un master nel processo di " "replicazione." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Questo server MySQL funziona come un slave nel processo di " "replicazione." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10840,11 +10854,11 @@ msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " "server, vedi la seztione sulla replicazione." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10853,35 +10867,35 @@ msgstr "" "dismisura e per questa ragione le statistiche riportate dal server MySQL " "potrebbero non essere corrette." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Ricevuti" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Spediti" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Fallito" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Comando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10889,11 +10903,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Il numero di tentativi falliti di connettere al server MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10903,19 +10917,19 @@ msgstr "" "ma che oltrepassano il valore di binlog_cache_size e usano un file " "temporaneo per salvare gli statements dalle transazioni." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Il numero delle transazioni che usano la cache temporanea del log binario." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Il numero di tentativi di connesione al server MySQL (completati con " "successo o no)." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10927,11 +10941,11 @@ msgstr "" "grande, potresti voler aumentare il valore tmp_table_size, per fare im modo " "che le tabelle temporanee siano memory-based anzichè disk-based." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10939,7 +10953,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10947,7 +10961,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10955,23 +10969,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Il numero di volte in cui una riga è stata cancellata da una tabella." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10981,7 +10995,7 @@ msgstr "" "tabella sulla base di un nome dato. Questo è chaiamto discovery. " "Handler_discover indica il numero di volte che una tabella è stata trovata." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10992,7 +11006,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11001,7 +11015,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11012,7 +11026,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11021,7 +11035,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11034,7 +11048,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11047,37 +11061,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Il numero di richieste per aggiornare una riga in una tabella." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Il numero di richieste per inserire una riga in una tabella." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Il numero di buffer pool pages che hanno avuto richiesta di essere " "aggiornate." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11087,7 +11101,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11099,11 +11113,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11111,7 +11125,7 @@ msgstr "" "Il numero di read-aheads \"random\" InnoDB iniziate. Questo accade quando " "una query legge una porzione di una tabella, ma in ordine casuale." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11119,11 +11133,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11131,7 +11145,7 @@ msgstr "" "Il numero di richieste logiche che InnoDB non può soddisfare dal buffer pool " "e che devono fare una lettura di una pagina singola." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11146,55 +11160,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Il numero di scritture doublewrite che sono state eseguite ed il numero che " "sono state scritte a questo scopo." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11202,35 +11216,35 @@ msgstr "" "Il numero di attese che abbiamo avuto perchè il buffer di log era troppo " "piccolo e abbiamo duvuto attendere che fosse aggiornato prima di continuare." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Il numero di scritture effettuate da fsync() sul log file." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11239,51 +11253,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Il tempo medio per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Il tempo totale per l'acquisizione di un row locks, in millisecondi." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Il tempo massimo per l'acquisizione di un row lock, in millisecondi." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Il numero di volte che un row lock ha dovuto attendere." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11292,7 +11306,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11300,7 +11314,7 @@ msgstr "" "Il numero di blocchi non usati nella cache chiave. Puoi usare questo valore " "per determinare quanta cache chiave è in uso." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11310,15 +11324,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Il numero di richieste per le ggere un blocco chiave dalla cache." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11329,26 +11343,26 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Il numero di richieste per scrivere una blocco chiave nella cache." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Il numero di scritture fisiche di un blocco chiave sul disco." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11359,7 +11373,7 @@ msgstr "" "query per la stessa operazione di query. Il valore di default è 0, che " "significa che nessuna query è stata ancora compilata." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11367,12 +11381,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "In numero di righe in attesa di essere scritte nella coda INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11380,20 +11394,20 @@ msgstr "" "Il numero di tabelle che sono state aperte. Se il valore opened_tables è " "grande, probabilmente il valore di table cache è troppo piccolo." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Il numero di stream che sono aperti (usato principalmente per il logging)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11403,19 +11417,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11428,7 +11442,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11436,19 +11450,19 @@ msgstr "" "Il numero di query non in cache (impossibilità di inserirle nella cache " "oppure non inserite per i settaggi del parametro query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11456,13 +11470,13 @@ msgstr "" "Il numero di joins che non usano gli indici. Se questo valore non è 0, " "dovresti controllare attentamente gli indici delle tue tabelle." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Il numero di joins che usano una ricerca limitata su di una tabella di " "riferimento." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11471,7 +11485,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11479,17 +11493,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Il numero di join che hanno effettuato una scansione completa della prima " "tabella." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Il numero di tabelle temporaneamente aperte da processi SQL slave." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11497,12 +11511,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Questa chiave è ON se questo è un server slave connesso ad un server master." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11510,12 +11524,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Numero di query che hanno impiegato più di long_query_time secondi." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11525,23 +11539,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Il numero di ordinamenti che sono stati eseguiti in un intervallo." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Il numero di ordinamenti che sono stati fatti leggendo la tabella." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Il numero di volte che un table lock è stato eseguito immediatamente." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11553,7 +11567,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11563,11 +11577,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11579,49 +11593,49 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Avvia monitoraggio" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Istruzioni/Configurazione" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Ho finito di modificare/muovere i grafici" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Aggiungi grafico" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Muovi/modifica i grafici" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Ritmo di aggiornamenti" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Numero di grafici per rigo" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Disposizione dei grafici" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11629,15 +11643,15 @@ msgstr "" "La configurazione dei grafici è memorizzata nella memoria locale dei " "browser. Potreste voler esportarla se avete una configurazione complicata." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Ripristina i valori predefiniti" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Istruzioni per monitoraggio" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11651,7 +11665,7 @@ msgstr "" "slow_query_log oppure general_log. Notate comunque che general_log produce " "molti dati e aumenta il carico del server fino al 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11664,11 +11678,11 @@ msgstr "" "potete ancora utilizzare le funzionalità di generazione dei grafici del " "server." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Utilizzo del monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11679,7 +11693,7 @@ msgstr "" "sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " "dentellata su ogni grafico." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11692,11 +11706,11 @@ msgstr "" "raggruppate nella quale potete cliccare su ogni comando SELECT che appare " "per l'analisi successiva." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Nota:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11708,88 +11722,88 @@ msgstr "" "compito intensivo per cui si consiglia di selezionare solo un intervallo " "temporale piccolo e disabilitare il general_log e svuotare la sua tabella." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Valori predefiniti del grafico" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variabili di stato" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Seleziona serie:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Monitorate di solito" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "or scrivi il nome di una variabile:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Visualizzare come valore differenziale" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Applica un divisore" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Aggiungi un unitá ai valori dei dati" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Aggiungi questa serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Cancella la serie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Serie del grafico:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Registra statistiche" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Intervallo di tempo selezionato:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " "raggruppamento" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Scegli il log dal quale generare le statistiche." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "I risultati verranno raggruppati secondo il testo di query." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analyzer della query" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d secondo" msgstr[1] "%d secondi" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11911,19 +11925,19 @@ msgstr "" "Il database di destinazione verrà completamente sincronizzato con il " "database di origine. Il database di origine non verrá modificato." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "L'impostazione della variablile è fallita" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variabili e impostazioni del server" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valore sessione" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valore globale" @@ -12204,10 +12218,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " -"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" -"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " -"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" +"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " +"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " +"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:312 @@ -12222,8 +12236,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " -"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" +"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12268,42 +12282,42 @@ msgstr "" msgid "Wrong data" msgstr "Dati errati" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Risultato SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generato da" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etichetta" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12436,17 +12450,17 @@ msgstr "Modifica l'indice" msgid "Index name:" msgstr "Nome dell'indice:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" puó essere solo il nome di una chiave primaria!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipo di indice:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Aggiungi  %s  campo/i all'indice" @@ -12610,38 +12624,38 @@ msgstr "Esporta come %s" msgid "Show versions" msgstr "Mostra le versioni" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Disattiva il tracking per %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Disattiva ora" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Attiva il tracking per %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Attiva ora" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versione %1$s di %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Monitora le istuzioni di definizione dei dati:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Monitora le istruzioni di manipolazione dei dati:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Crea versione" @@ -13034,12 +13048,12 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Il rapporto corrente tra la memoria libera nella cache delle query e la " -"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra " -"l'80%%" +"dimensione totale della cache delle query è %s%%. Dovrebbe essere sopra l'80%" +"%" #: libraries/advisory_rules.txt:174 msgid "Query cache fragmentation" @@ -13193,8 +13207,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% di tutti gli ordinamenti causano la creazione di tabelle temporanee, " "questo valore dovrebbe essere inferiore al 10%%." @@ -14150,8 +14164,8 @@ msgstr "concurrent_insert è impostato a 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database " -#~ "%s?" +#~ "Sei sicuro di voler disabilitare tutte le referenze BLOB per il database %" +#~ "s?" #~ msgid "Unknown error while uploading." #~ msgstr "Errore sconosciuto durante il caricamento del file." diff --git a/po/ja.po b/po/ja.po index 2af9aea6e9..4869fa8ea8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-06-02 11:09+0200\n" "Last-Translator: Yuichiro Takahashi \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: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "ページ番号:" @@ -39,36 +39,36 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます。" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "検索" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "検索" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "実行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "キー名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "説明" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "この値を利用する" @@ -119,18 +119,18 @@ msgstr "データベース %1$s を作成しました。" msgid "Database comment: " msgstr "データベースのコメント: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "テーブルのコメント" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "カラム" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "カラム" msgid "Type" msgstr "データ型" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "データ型" msgid "Null" msgstr "NULL" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "NULL" msgid "Default" msgstr "デフォルト値" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "デフォルト値" msgid "Links to" msgstr "リンク先" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "リンク先" msgid "Comments" msgstr "コメント" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "コメント" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "いいえ" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "いいえ" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "はい" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "データベースのダンプ (スキーマ) 表示" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません。" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "全選択" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "データベース %1$s の名称を %2$s に変更しました" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "データベース %1$s を %2$s にコピーしました" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgstr "" "phpMyAdmin 環境保管領域が無効になっています。理由については%sこちら%sをご覧く" "ださい。" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "テーブル" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "行" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "サイズ" @@ -344,7 +344,7 @@ msgstr "使用中" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "作成日時" @@ -352,7 +352,7 @@ msgstr "作成日時" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "最終更新" @@ -360,7 +360,7 @@ msgstr "最終更新" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "最終検査" @@ -374,7 +374,7 @@ msgstr[0] "%s テーブル" msgid "You have to choose at least one column to display" msgstr "最低 1 つは表示するカラムを選択してください" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える" @@ -406,9 +406,9 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "データベース" @@ -426,66 +426,66 @@ msgstr "更新日時" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "状態" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "操作" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "表示" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "このテーブルに対しての追跡データを削除する" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "削除" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "アクティブ" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "非アクティブ" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "世代" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "追跡レポート" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "構造のスナップショット" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "SQL コマンドを追跡していないテーブル" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "テーブルを追跡する" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "データベースのログです" @@ -501,12 +501,12 @@ msgstr "この形式のエクスポートはファイルに保存する必要が msgid "Bad parameters!" msgstr "パラメータが正しくありません!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません。" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -519,7 +519,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません。" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました。" @@ -528,117 +528,124 @@ msgstr "ダンプをファイル %s に保存しました。" msgid "Invalid export type" msgstr "無効なエクスポート形式" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "カラム \"%s\" に対しての値" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "ベースレイヤーに OpenStreetMap を使用する" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "空間参照識別子" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "幾何データ" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "座標" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "座標 %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "座標を追加する" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "線分" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "外輪" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "内輪" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "線分を追加する" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "内輪を追加する" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "ポリゴン" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "ポリゴンを追加する" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "幾何データを追加する" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "成形結果" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "「関数」の項目で「GeomFromText」を選択して、下の文字列を「値」の項目に貼り付" "けてください" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください。" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました。" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -647,7 +654,7 @@ msgstr "" "サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式" "はサポートされていないか設定で無効にされています。" -#: import.php:400 +#: import.php:404 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 " @@ -657,29 +664,29 @@ msgstr "" "ファイルサイズが PHP の設定で許可された最大値を超えています。[a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] をご覧ください。" -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "文字セット変換ライブラリがないので、ファイルの文字セットが変換できません" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインが読み込めません。正しくインストールされているか確認して" "ください!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "インポートは正常に終了しました。%d 個のクエリを実行しました。" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,7 @@ msgstr "" "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ" "イルを再送信すればインポートが再開されます。" -#: import.php:513 +#: import.php:517 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." @@ -695,9 +702,9 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP " "の時間制限を伸ばさない限りこのデータのインポートはできません。" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL は正常に実行されました" @@ -711,7 +718,7 @@ msgstr "戻る" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします。" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています。" @@ -720,7 +727,7 @@ msgstr "DROP DATABASE 文は無効にされています。" msgid "Do you really want to execute \"%s\"?" msgstr "「%s」を本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -760,7 +767,7 @@ msgstr "インデックスを追加する" msgid "Edit Index" msgstr "インデックスを編集する" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "インデックスに %d 個のカラムを追加する" @@ -810,24 +817,24 @@ msgstr "閉じる" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "編集" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "リアルタイムでのトラフィックグラフ" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "リアルタイムでの接続/プロセスグラフ" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "リアルタイムでのクエリグラフ" @@ -837,24 +844,24 @@ msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -874,7 +881,7 @@ msgstr "サーバのトラフィック (単位:KiB)" msgid "Connections since last refresh" msgstr "更新間隔中の接続数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "プロセス" @@ -892,7 +899,7 @@ msgstr "更新間隔中の問い合わせ数" msgid "Questions (executed statements by the server)" msgstr "問い合わせ数 (サーバで実行された命令文)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "クエリの統計" @@ -937,13 +944,13 @@ msgstr "システムスワップ" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -995,32 +1002,32 @@ msgstr "送信" msgid "Bytes received" msgstr "受信" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "接続" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "バイト" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1034,11 +1041,11 @@ msgstr "%d テーブル" msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "設定" @@ -1059,12 +1066,12 @@ msgid "Please add at least one variable to the series" msgstr "少なくとも1つの系列を追加してください" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "なし" @@ -1164,7 +1171,7 @@ msgstr "設定の変更" msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "グラフの題名" @@ -1251,7 +1258,7 @@ msgstr "EXPLAIN の結果" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "時間" @@ -1348,8 +1355,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" @@ -1562,12 +1569,12 @@ msgstr "クエリの実行時間" msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "保存する" @@ -1625,8 +1632,8 @@ msgstr "クエリの結果" msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "無視" @@ -1734,7 +1741,7 @@ msgstr "データ行の表示" msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "生成する" @@ -1833,63 +1840,63 @@ msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "12 月" @@ -1927,32 +1934,32 @@ msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "土" @@ -2066,16 +2073,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "予期しない文字 (行: %1$s)。タブ文字があるべきところに \"%2$s\" がありました。" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "/ 秒" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "/ 分" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "/ 時" @@ -2092,7 +2099,7 @@ msgstr "最長: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "ドキュメント" @@ -2115,14 +2122,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "エラー" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "実行した SQL" @@ -2140,210 +2147,210 @@ msgstr "実行した SQL" msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL 検証への接続に失敗しました!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "クエリを実行する" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "再描画" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL の検証" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "このクエリをインラインで編集します" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "プロファイリング" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "パラメータがありません:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "先頭" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "前へ" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "次へ" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "最後" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "データベース「%s」に移動します。" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "構造" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "挿入" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "表示" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "操作" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "空にする" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "実行" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "印刷" @@ -2362,104 +2369,104 @@ msgstr "" msgid "Font size" msgstr "フォントサイズ" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "昇順" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "降順" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "ソート" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "条件" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "条件行を追加・削除する" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "カラムを追加・削除する" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "クエリを更新する" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "利用するテーブル" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "または" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "および" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "挿入" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "削除" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "修正" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "いずれかの単語を含む" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "すべての単語を含む" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "完全一致" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "正規表現" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" の検索結果 %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "合計: %s 件" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2467,44 +2474,44 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 件 (テーブル %2$s)" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "削除" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "データベース内検索" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "検索する単語や値 (ワイルドカード: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "検索条件:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "各単語は空白文字 (\" \") で区切ってください。" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "検索するテーブル:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "検索するカラム:" @@ -2550,8 +2557,8 @@ msgstr "%s 行毎にヘッダを表示" msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2628,7 +2635,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "停止" @@ -2645,8 +2652,8 @@ msgstr "行/クエリ" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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をご覧ください。" #: libraries/DisplayResults.class.php:4939 @@ -2657,7 +2664,7 @@ msgstr "行の表示" msgid "total" msgstr "合計" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" @@ -2668,7 +2675,7 @@ msgstr "クエリの実行時間 %01.4f 秒" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "チェックしたものを:" @@ -2678,8 +2685,8 @@ msgstr "チェックしたものを:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "すべてチェックする" @@ -2717,17 +2724,17 @@ msgstr "リンク先が見つかりません" msgid "Too many error messages, some are not displayed." msgstr "エラーメッセージが多すぎます。いくつかは表示されません。" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "アップロードされたファイルではありません。" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている設定項目 " "upload_max_filesize の値を超えています。" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2735,27 +2742,27 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている設定項目 " "MAX_FILE_SIZE の値を超えています。" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "拡張によりファイルのアップロードが中断されました。" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2763,11 +2770,11 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] をご覧ください。" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "アップロードされたファイルを移動中にエラーが発生しました。" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "アップロードされ(移動し)たファイルが読み込めません。" @@ -2776,66 +2783,66 @@ msgstr "アップロードされ(移動し)たファイルが読み込めま msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください。" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript を有効にしてください" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "インデックスが定義されていません!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "インデックス" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "照合順序" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "コメント" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "主キーを削除しました" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "インデックス %s を削除しました" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2846,12 +2853,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "データベース" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "サーバ" @@ -2919,18 +2926,18 @@ msgstr "ユーザ" msgid "Synchronize" msgstr "同期" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "バイナリログ" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "レプリケーション" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "変数" @@ -3060,8 +3067,8 @@ msgstr "" "環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "関数" @@ -3071,11 +3078,11 @@ msgstr "関数" msgid "Operator" msgstr "演算子" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "値" @@ -3083,60 +3090,60 @@ msgstr "値" msgid "Table Search" msgstr "テーブル検索" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "編集/挿入" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "表示するカラム (最低 1 つ):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "検索条件 (WHERE 節の全内容):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "ページあたりの行数" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "表示順:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "各点のラベルとして使われるカラム" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "プロットする結果の最大数" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "更なる検索条件" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "異なる 2 つのカラムによる定型問い合わせ (ワイルドカード: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "定型問い合わせ (ワイルドカード: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "結果表示/プロット点の編集" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "使い方" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "ズームを戻す" @@ -3217,20 +3224,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "単精度浮動小数、有効範囲は -3.402823466E+38 から -1.175494351E-38、0、" "1.175494351E-38 から 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から " -"-2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" +"倍精度浮動小数、有効範囲は -1.7976931348623157E+308 から -" +"2.2250738585072014E-308、0、2.2250738585072014E-308 から 1.7976931348623157E" "+308" #: libraries/Types.class.php:311 @@ -3510,7 +3517,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "テーブル" @@ -3524,12 +3531,12 @@ msgstr "テーブル" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "データ" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "オーバーヘッド" @@ -3635,7 +3642,7 @@ msgstr "開いておく" msgid "Closed" msgstr "閉じておく" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3773,22 +3780,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "この項目は無効になっています。これは設定に適用されていません。" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "値「%s」を設定" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "デフォルト値に戻す" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "この値の変更をユーザに許可する" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "リセット" @@ -4074,7 +4081,7 @@ msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "フォーマット" @@ -4183,7 +4190,7 @@ msgstr "ラベルキー" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME タイプ" @@ -4219,7 +4226,7 @@ msgid "Enclose table and column names with backquotes" msgstr "テーブル名やカラム名を逆クォートで囲む" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL 互換モード" @@ -5783,10 +5790,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "SQL 検証を有効にするには必要です。" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5939,8 +5946,8 @@ msgid "" "for import and export operations" msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" -"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC" -"%E3%83%9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" +"ZIP_%28%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%83%95%E3%82%A9%E3%83%BC%E3%83%" +"9E%E3%83%83%E3%83%88%29]ZIP[/a] 圧縮を有効にします。" #: libraries/config/messages.inc.php:527 msgid "ZIP" @@ -6055,7 +6062,7 @@ msgstr "%s 拡張がありません。PHP の設定をチェックしてみて msgid "possible deep recursion attack" msgstr "深い再帰的な攻撃を受けている可能性があります" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6063,48 +6070,56 @@ msgstr "" "サーバが応答しません (あるいはローカルサーバのソケットが正しく設定されていま" "せん)。" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "サーバが応答しません。" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "データベースを含んでいるディレクトリのパーミッションを確認してください。" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "詳細..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "パスワードを変更する" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "パスワード無し" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "もう一度入力してください" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "パスワードハッシュ" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 互換" @@ -6236,8 +6251,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -6317,7 +6332,7 @@ msgstr "最終コミット: %1$s、%2$s により" msgid "authored on %1$s by %2$s" msgstr "パッチ作成: %1$s、%2$s により" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6327,33 +6342,33 @@ msgstr "" "は、WebKit がベースのブラウザ (Safari、Google Chrome、Arora など) の既知のバ" "グです。" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "インポートファイルをアップロードしています..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "ファイルが処理されています。しばらくお待ちください。" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6361,30 +6376,30 @@ msgstr "" "しばらくお待ちください。ファイルがアップロードされています。アップロードに関" "する機能は利用できません。" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "現在のサーバへのインポート" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "データベース \"%s\" へのインポート" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "テーブル \"%s\" へのインポート" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "インポートするファイル:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "ファイルは圧縮されていないもの、もしくは、%s で圧縮されているもの。" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6471,71 +6486,71 @@ msgstr "" "InnoDB がテーブルのデータやインデックスをキャッシュするのに使うメモリバッファ" "量。" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB ステータス" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "バッファプールの使用量" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "ページ" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "フリーページ数" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "ダーティページ" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "データが含まれているページ数" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "フラッシュ待ちページ数" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "ビジーなページ数" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "ラッチされているページ" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "バッファプールの利用状況" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "読み込みリクエスト数" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "書き込みリクエスト数" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "読み込みミス" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "書き込み待ち" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "読み込みミス (%)" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "書き込み待ち (%)" @@ -6764,8 +6779,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -6782,127 +6797,127 @@ msgstr "Paul McCullagh 氏による PrimeBase XT ブログ" msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "以下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "名前をクリックすることで構造内容を表示します。" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "データベース %s に移動" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "%s に対する設定の変更を行います" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "テーブル %s に移動" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s の構造" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "ビュー %s に移動" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "隠す" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "バイナリ" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "長さによってはこのカラムを
編集できなくなる場合もあります。" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -6946,7 +6961,7 @@ msgstr "テーブル接頭辞の追加" msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" @@ -7233,7 +7248,7 @@ msgstr "テーブルオプション" msgid "Rename table to" msgstr "変更後のテーブル名称" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "ストレージエンジン" @@ -7347,11 +7362,11 @@ msgstr "%s へようこそ" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7426,21 +7441,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "サインオン認証スクリプトが見つかりません:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "ファイル %s にキー ID が含まれていません" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "ハードウェア認証に失敗しました" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "有効な認証キーが接続されていません" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "認証中..." @@ -7577,20 +7592,21 @@ msgstr "MIME タイプを表示する" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "ホスト" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "生成日時" @@ -7839,7 +7855,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV 入力のカラム数が不正です (行: %d)。" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "テーブル名" @@ -8094,7 +8110,7 @@ msgstr "PDF の作成" msgid "Displaying Column Comments" msgstr "カラムコメント表示機能" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "ブラウザ変換機能" @@ -8162,7 +8178,7 @@ msgstr "すべてのチェックを外す" msgid "Slave configuration" msgstr "スレーブの設定" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "マスタサーバの変更または再設定" @@ -8175,8 +8191,8 @@ msgstr "" "さい。もしそうでないならば、[mysqld] セクションに以下の行を追加してください。" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8196,15 +8212,15 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "変数" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "サーバ ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8212,17 +8228,17 @@ msgstr "" "--report-host=host_name オプションで起動したスレーブだけが、このリストに表示" "されます。" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "スレーブレプリケーションのユーザ追加" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "すべてのユーザ" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8231,27 +8247,27 @@ msgstr "すべてのユーザ" msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8260,7 +8276,7 @@ msgstr "" "ホストテーブルが使用されている場合、この項目は無視され、代わりに使用されてい" "るホストテーブルに格納されている値を設定します。" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "パスワードを生成する" @@ -8319,7 +8335,7 @@ msgstr "詳細" msgid "Event name" msgstr "イベント名" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "イベント種別" @@ -8662,7 +8678,7 @@ msgstr "データベース %2$s に %1$s という名前のイベントはあり msgid "There are no events to display." msgstr "表示できるイベントがありません。" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8671,7 +8687,7 @@ msgstr "表示できるイベントがありません。" msgid "The %s table doesn't exist!" msgstr "%s テーブルは存在しません!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8717,91 +8733,91 @@ msgstr "属性" msgid "Extra" msgstr "その他" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "新しいページを作成する" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "ページ名" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "自動レイアウト、チェックしたのに基づく" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "内部リレーション" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "外部キー" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "編集するページを選択してください" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "ページを選択してください" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "テーブルを選択してください" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "カラム名" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "リレーショナルスキーマを表示する" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "エクスポートするリレーショナルタイプを選択してください" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "グリッドを表示" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "色表示" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "テーブルの大きさを表示する" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "すべてのテーブルを同じ幅で表示しますか?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "データ辞書" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "キーの表示のみ" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "横向き" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "縦向き" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "向き" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "用紙サイズ" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8809,7 +8825,7 @@ msgstr "" "このページには存在しないテーブルへの参照があります。これらの参照を削除します" "か?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "スクラッチボードを切り替える" @@ -9105,7 +9121,7 @@ msgstr ""%s" にアクセスできるユーザ" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "ユーザ" @@ -9240,8 +9256,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 が利用しているテーブルの内容とサーバの" @@ -9302,11 +9318,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -9401,7 +9417,7 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください。" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" @@ -9414,12 +9430,12 @@ msgstr "SQL コマンドの追跡はアクティブです。" msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" @@ -9447,14 +9463,14 @@ msgid "Column %s has been dropped" msgstr "カラム %s を削除しました" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "主" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "インデックス" @@ -9464,7 +9480,7 @@ msgid "Spatial" msgstr "空間" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "全文" @@ -9488,7 +9504,7 @@ msgstr "リレーションビュー" msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" @@ -9496,7 +9512,7 @@ msgstr "最低ひとつはカラムを追加してください。" msgid "Add column" msgstr "カラムを追加する" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s 個のカラムを追加する" @@ -9519,15 +9535,15 @@ msgstr "指定カラムの後に %s" msgid "Create an index on  %s columns" msgstr "%s つのカラムにインデックスを作成する" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "行の統計" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "静的" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "動的" @@ -9535,15 +9551,15 @@ msgstr "動的" msgid "partitioned" msgstr "パーティション有り" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "行の長さ" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "行のサイズ" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "次の自動付番" @@ -9589,15 +9605,15 @@ msgstr "空間インデックスを追加する" msgid "Add FULLTEXT index" msgstr "全文インデックスを追加する" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "情報" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "ディスク使用量" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "有効" @@ -9629,7 +9645,7 @@ msgstr "" msgid "Move column" msgstr "カラムを移動させる" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9638,11 +9654,11 @@ msgstr "" "利用可能な変換オプションや MIME タイプの変換の一覧については %s変換機能の説" "明%s をご覧ください" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "変換オプション" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9653,33 +9669,33 @@ msgstr "" "ングルクォート (\"'\") を値に含める必要がある場合は ( \\\\xyz や a\\'b のよう" "に) バックスラッシュでエスケープしてください。" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM もしくは SET データが長いので、" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "広い編集領域で作業する" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "なし" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "ユーザ定義:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "最初へ" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "%s の後へ" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "パーティションの定義" @@ -9885,7 +9901,7 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "データベースが存在しません" @@ -10168,29 +10184,29 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "ファイル" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "クエリ全体を表示" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "ログ名" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "位置" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "元の位置" @@ -10198,30 +10214,30 @@ msgstr "元の位置" msgid "Character Sets and Collations" msgstr "文字セットと照合順序" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d 個のデータベースが正常に削除されました。" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "データベースの統計" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "マスタレプリケーション" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "スレーブレプリケーション" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "統計を有効にする" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10291,39 +10307,39 @@ msgstr "特権を正常に再読み込みしました。" msgid "Unknown error" msgstr "不明なエラーです" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "マスタ %s に接続していません。" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "マスタのログの位置が読み込めません。マスター上の特権問題の可能性があります。" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "マスタを切り替えることができません" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "マスタサーバを %s へ切り替えるのに成功しました。" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "マスタステータスの表示" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "接続しているスレーブの表示" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10332,11 +10348,11 @@ msgstr "" "このサーバのレプリケーションプロセスには、マスタが設定されていません。設定を行いますか?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "マスタ設定" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10351,19 +10367,19 @@ msgstr "" "を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ" "りいずれかのモードを選択してください。" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "特定のデータベースだけを除いた残り全てをレプリケーションする" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "特定のデータベースだけレプリケーションする" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "データベースを選択してください:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10371,7 +10387,7 @@ msgstr "" "my.cnf の [mysqld] セクションの最後に以下の行を追加し、その後、MySQL サーバを" "再起動してください。" -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10381,84 +10397,84 @@ msgstr "" "のサーバマスタとして設定されていることを知らせるメッセージが表示され" "ます。" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "スレーブの SQL スレッドが実行していません!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "スレーブの IO スレッドが実行していません!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "サーバはレプリケーションプロセスではスレーブとして設定されています。どのよう" "にしたいですか?" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "スレーブのステータステーブルを閲覧する" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "データベースをマスタと同期させる" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "スレーブの操作:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "全開始" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "全停止" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "スレーブのリセット" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "SQL スレッドのみ開始" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "SQL スレッドのみ停止" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "IO スレッドのみ開始" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "IO スレッドのみ停止" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "管理エラー:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "現在のエラーをスキップする" # I think better of "Skip next %s errors." -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "エラースキップする" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "個" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10467,132 +10483,132 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました。" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "ハンドラ" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "クエリキャッシュ" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "スレッド" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "一時データ" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "遅延インサート" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "キーキャッシュ" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "結合" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "ソート" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "トランザクションコーディネータ" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "すべてのテーブルをフラッシュする(閉じる)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "開いているテーブルを表示する" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "スレーブの状態を表示する" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "クエリキャッシュをフラッシュする" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "ランタイム情報" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "すべての状態変数" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "モニタ" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "アドバイザ" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "行数:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "再描画間隔: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "フィルタ" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "含まれている文字:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "警告値のみ表示する" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "種別による絞り込み..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "生の値 (書式化なし) で表示する" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "関連リンク:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "事象の解析をする" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "アドバイザの利用にあたって" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10600,7 +10616,7 @@ msgstr "" "アドバイザ・システムは、サーバの状態変数を分析することにより、ふさわしいと思" "われるサーバ変数の調整方法を提供するものです。" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10609,7 +10625,7 @@ msgstr "" "このシステムは、単純な計算を基にして経験則によって調整方法を提供するため、お" "使いのシステムに必ずしも当てはまるものではないことに注意してください。" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10619,7 +10635,7 @@ msgstr "" "を確認しておいてください。間違ったチューニングは、パフォーマンスに非常に悪影" "響を与える可能性があります。" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10630,31 +10646,31 @@ msgstr "" "変更した箇所を元に戻します。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "起動以後の問い合わせ数:%s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "ステートメント" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "クエリ数" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "起動以後のネットワークトラフィック:%s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "この MySQL サーバの稼働時間: %1$s (起動時刻: %2$s)" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10662,19 +10678,19 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10682,11 +10698,11 @@ msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10694,45 +10710,45 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります。" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "受信済" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "送信済" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "中断" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "コマンド" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10741,16 +10757,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数。" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数。" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10761,24 +10777,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数。" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10786,23 +10802,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます。" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数。" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数。" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数。" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数。" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10812,7 +10828,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です。" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10822,7 +10838,7 @@ msgstr "" "もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " "FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10830,7 +10846,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます。" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10840,7 +10856,7 @@ msgstr "" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" "す。" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10848,7 +10864,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます。" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10860,7 +10876,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります。" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10871,36 +10887,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します。" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数。" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数。" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数。" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数。" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数。" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "空きページ数。" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10910,7 +10926,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です。" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10922,11 +10938,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます。" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計。" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10934,7 +10950,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します。" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10942,11 +10958,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なテーブル全スキャンを行うときに発生します。" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数。" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10954,7 +10970,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数。" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10968,51 +10984,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです。" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数。" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数。" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数。" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数。" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数。" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)。" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "データ読み込み回数の合計。" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "データ書き込み回数の合計。" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)。" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11020,35 +11036,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数。" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数。" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数。" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数。" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数。" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数。" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数。" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "作成されたページ数。" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11056,51 +11072,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます。" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "読み込んだページ数。" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "書き込んだページ数。" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数。" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数。" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数。" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数。" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数。" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数。" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11108,7 +11124,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした。" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11116,7 +11132,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます。" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11125,15 +11141,15 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です。" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "使われているキーキャッシュの比率 (計算値)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11143,7 +11159,7 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます。" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11151,20 +11167,20 @@ msgstr "" "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" "値)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数。" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11174,17 +11190,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11192,19 +11208,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます。" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "開いているファイルの数。" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)。" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "開いているテーブルの数。" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11214,19 +11230,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量。" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "キャッシュのヒット数。" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数。" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11238,7 +11254,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" "て削除するクエリを決めます。" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11246,19 +11262,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数。" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数。" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数。" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)。" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11266,11 +11282,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください。" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数。" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11278,7 +11294,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11286,15 +11302,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルを全スキャンした結合の数。" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11302,23 +11318,23 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)。" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11327,23 +11343,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう。" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数。" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "ソート済の行数。" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数。" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数。" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11354,7 +11370,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください。" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11364,11 +11380,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください。" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "現在開いている接続の数。" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11379,47 +11395,47 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "スレッドキャッシュのヒット割合 (計算値)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数。" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "モニタ開始" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "使用方法/セットアップ" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "グラフの再配置/編集完了" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "グラフの追加" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "グラフの再配置/編集" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "1 段のグラフ数" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "モニタ環境設定" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11427,15 +11443,15 @@ msgstr "" "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" "トできます。" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "デフォルトに戻す" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "モニタの使用方法" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11449,7 +11465,7 @@ msgstr "" "いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" "し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11461,11 +11477,11 @@ msgstr "" "グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" "タ機能は使用することができます。" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "モニタの使い方:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11475,7 +11491,7 @@ msgstr "" "のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" "ある歯車のアイコンを通じて削除が行えます。" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11488,11 +11504,11 @@ msgstr "" "れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" "をクリックすることで、更なるクエリ解析が可能です。" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "注意事項:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11505,85 +11521,85 @@ msgstr "" "うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" "テーブルを空にしておくのが望ましいです。" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "プリセットグラフ" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "状態変数" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "系列の選択:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "一般的なモニタ対象" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "もしくは対象変数名:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "差分値として表示する" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "除数を適用する" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "データ値に単位を追加する" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "この系列を追加する" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "系列をクリアする" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "グラフの系列:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "ログの統計" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "選択期間:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "ログの統計元を選択することができます。" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "結果はクエリ文でグループ化されます。" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "クエリの解析" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11700,19 +11716,19 @@ msgstr "" "対象先のデータベースが完全に元のデータベースと同期されます。元のデータベース" "は変更されません。" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "変数の設定に失敗しました" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "サーバ変数と設定値" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "セッション値" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "グローバル値" @@ -11990,11 +12006,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" -"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" -"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" -"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" -"せん。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" +"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" +"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" +"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" #: setup/lib/index.lib.php:312 #, php-format @@ -12050,42 +12065,42 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要 msgid "Wrong data" msgstr "データが正しくありません" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL の結果" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "生成環境" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "ラベル" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s は正常に変更されました" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "カラムは正常に移動されました。" @@ -12216,18 +12231,18 @@ msgstr "インデックスを編集する" msgid "Index name:" msgstr "インデックス名:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(主キーは必ず \"PRIMARY\" という名前でなければなりません。また主" "キー以外に \"PRIMARY\" という名前を使ってはなりません!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "インデックスの種類:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "%s 個のインデックスカラムを追加する" @@ -12396,38 +12411,38 @@ msgstr "上の結果をエクスポートする %s" msgid "Show versions" msgstr "世代を表示する" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "%s への SQL コマンド追跡を非アクティブにする" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "すぐに非アクティブにする" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "%s への SQL コマンド追跡をアクティブにする" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "すぐにアクティブにする" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s に世代 %1$s を作成" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "追跡するデータ定義コマンド:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "追跡するデータ操作コマンド:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "世代を作成する" @@ -12815,8 +12830,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "クエリキャッシュの総量に対するクエリキャッシュの空きメモリの割合は、%s%% で" "す。この値は、80%% 以上がいいと言われています。" @@ -12969,8 +12984,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "全ソートの内 %s%% が一時テーブルを使用しています。この値は、10%% 未満がいいと" "言われています。" @@ -13504,8 +13519,8 @@ msgstr "" msgid "" "Max_used_connections is at %s%% of max_connections, it should be below 80%%" msgstr "" -"Max_used_connections は max_connections の %s%% になっています。この値は、" -"80%% 未満がいいと言われています。" +"Max_used_connections は max_connections の %s%% になっています。この値は、80%" +"% 未満がいいと言われています。" #: libraries/advisory_rules.txt:392 msgid "Percentage of aborted connections" @@ -13725,10 +13740,10 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが " -"60%% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを" -"使用していない、もしくは同マシン上で他のサービスを稼動させていないのであれ" -"ば、ご使用のシステムではこの設定で十分かもしれません。" +"現在、メモリの %s%% が InnoDB バッファプールに使われています。割り当てが 60%" +"% 未満の時にこの事象が表示されるようになりますが、多くの InnoDB テーブルを使" +"用していない、もしくは同マシン上で他のサービスを稼動させていないのであれば、" +"ご使用のシステムではこの設定で十分かもしれません。" #: libraries/advisory_rules.txt:452 msgid "MyISAM concurrent inserts" diff --git a/po/ka.po b/po/ka.po index df107df14d..135a4d9548 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: georgian \n" -"Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "გვერდის ნომერი:" @@ -36,36 +36,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "ძებნა" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -73,28 +73,28 @@ msgstr "ძებნა" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "გადასვლა" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Keyname" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "აღწერილობა" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "გამოიყენეთ ეს ველი" @@ -116,18 +116,18 @@ msgstr "მონაცემთა ბაზა '%1$s' წარმატებ msgid "Database comment: " msgstr "კომენტარი მონაცემთა ბაზაში: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,18 +135,18 @@ msgstr "ცხრილის კომენტარები" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "სვეტები" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -163,11 +163,11 @@ msgstr "სვეტები" msgid "Type" msgstr "ტიპი" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -179,9 +179,9 @@ msgstr "ტიპი" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -194,8 +194,8 @@ msgstr "Null" msgid "Default" msgstr "სტანდარტული" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -203,11 +203,11 @@ msgstr "სტანდარტული" msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -216,12 +216,12 @@ msgstr "Links to" msgid "Comments" msgstr "კომენტარები" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -232,23 +232,23 @@ msgstr "კომენტარები" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "არა" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -260,8 +260,8 @@ msgstr "არა" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "დიახ" @@ -271,47 +271,47 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "ყველას მონიშნვა" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -321,14 +321,14 @@ msgstr "ცხრილი" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "სტრიქონები" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "ზომა" @@ -341,7 +341,7 @@ msgstr "in use" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "შეიქმნა" @@ -349,7 +349,7 @@ msgstr "შეიქმნა" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "უკანასკნელი განახლება" @@ -357,7 +357,7 @@ msgstr "უკანასკნელი განახლება" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Last check" @@ -371,7 +371,7 @@ msgstr[0] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -405,9 +405,9 @@ msgstr "ნანახი ცხრილები" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -426,67 +426,67 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "სტატუსი" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "მოქმედება" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "ჩვენება" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Drop" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "ვერსია" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "მონაცემთა ბაზა" @@ -503,12 +503,12 @@ msgstr "" msgid "Bad parameters!" msgstr "შეუსაბამობაა პარამეტრებში!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -519,7 +519,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -529,162 +529,162 @@ msgstr "" msgid "Invalid export type" msgstr "Export type" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "წერტილის დამატება" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "ველის დამატება" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "შიდა ქსელის დამატება" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "გეომეტრიის დამატება" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -698,7 +698,7 @@ msgstr "უკან" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -708,7 +708,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -756,7 +756,7 @@ msgstr "ახალი ველის დამატება" msgid "Edit Index" msgstr "რედაქტირების რეჟიმი" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -813,24 +813,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "გრაფიკული ტრაფიკის სქემა" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -840,24 +840,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -879,7 +879,7 @@ msgstr "სერვერის არჩევა" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "პროცესები" @@ -899,7 +899,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -951,13 +951,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1019,32 +1019,32 @@ msgstr "" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "კავშირები" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1060,11 +1060,11 @@ msgstr "%s table(s)" msgid "Questions" msgstr "სპარსული" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1091,12 +1091,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "არაა" @@ -1196,7 +1196,7 @@ msgstr "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1289,7 +1289,7 @@ msgstr "SQL-ის ახსნა" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "დრო" @@ -1401,8 +1401,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" @@ -1666,12 +1666,12 @@ msgstr "Maximum execution time" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "შენახვა" @@ -1739,8 +1739,8 @@ msgstr "Query results operations" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "იგნორირება" @@ -1850,7 +1850,7 @@ msgstr "Startup" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "დაგენერირება" @@ -1976,27 +1976,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2004,37 +2004,37 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "დეკ" @@ -2083,32 +2083,32 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "შაბ" @@ -2244,16 +2244,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "წამში" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "წუთში" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "საათში" @@ -2270,7 +2270,7 @@ msgstr "მაქს: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "დოკუმენტაცია" @@ -2293,14 +2293,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "შეცდომა" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2318,89 +2318,89 @@ msgstr "SQL მოთხოვნა" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "განახლება" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "კვი" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2408,28 +2408,28 @@ msgctxt "First page" msgid "Begin" msgstr "დასაწყისი" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "წინა" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "შემდეგი" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2437,106 +2437,106 @@ msgctxt "Last page" msgid "End" msgstr "დასასრული" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "სტრუქტურა" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "ჩასმა" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "არჩევა" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "მოქმედებები" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "ცარიელი" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "დაბეჭდვა" @@ -2553,100 +2553,100 @@ msgstr "" msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ზრდადობით" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "კლებადობით" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "დალაგება" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "კრიტერიუმი" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "მოთხოვნის განახლება" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "გამოიყენე ცხრილები" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ან" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "და" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "შეცვლა" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "ყველა სიტყვა" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "ზუსტი ფრაზა" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "რეგულარული გამოსახულება" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2654,7 +2654,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Total: %s match(es)" msgstr[1] "Total: %s match(es)" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2662,48 +2662,48 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "წაშლა" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "ძებნა:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "ცხრილ(ებ)ში:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "სვეტში:" @@ -2759,8 +2759,8 @@ msgstr "ჩანიშნული მოთხოვნის გაშვე msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2845,7 +2845,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Kill" @@ -2864,8 +2864,8 @@ msgstr "მოთხოვნაში" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2876,7 +2876,7 @@ msgstr "" msgid "total" msgstr "სულ" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" @@ -2887,7 +2887,7 @@ msgstr "მოთხოვნას დასჭირდა %01.4f წმ" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2897,8 +2897,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "ყველას შემოწმება" @@ -2939,51 +2939,51 @@ msgstr "ბმული ვერ მოიძებნა" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2992,66 +2992,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "ინდექსი არაა განსაზღვრული!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "ინდექსები" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "კოლაცია" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "კომენტარი" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3060,12 +3060,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "მონაცემთა ბაზები" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "სერვერი" @@ -3135,18 +3135,18 @@ msgstr "მომხმარებელი" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "ბინარული ჟურნალი" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "რეპლიკაცია" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "ცვლადები" @@ -3289,8 +3289,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ფუნქცია" @@ -3300,11 +3300,11 @@ msgstr "ფუნქცია" msgid "Operator" msgstr "ოპერატორი" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "მნიშვნელობა" @@ -3314,72 +3314,72 @@ msgstr "მნიშვნელობა" msgid "Table Search" msgstr "ძებნა" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "ჩასმა" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Maximum number of rows to display" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" msgstr "SQL Query box" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "Control user" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3454,14 +3454,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3710,7 +3710,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "ცხრილები" @@ -3724,12 +3724,12 @@ msgstr "ცხრილები" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "მონაცემები" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3841,7 +3841,7 @@ msgstr "" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3989,22 +3989,22 @@ msgstr "ვიკი" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "დაბრუნება" @@ -4299,7 +4299,7 @@ msgstr "სომბოლოთა ნაკრები ფაილისა #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "ფორმატი" @@ -4420,7 +4420,7 @@ msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-ის ტიპი" @@ -4460,7 +4460,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Enclose table and field names with backquotes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -6041,10 +6041,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6311,7 +6311,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6319,48 +6319,56 @@ msgid "" "configured)." msgstr "(or the local MySQL server's socket is not correctly configured)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "სერვერი არ პასუხობს" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "დეტალები..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "პაროლის შეცვლა" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "პაროლი არაა" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-type" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Password Hashing" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6517,16 +6525,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6615,75 +6623,75 @@ msgstr "Create relation" msgid "authored on %1$s by %2$s" msgstr "Create relation" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "შემოტანილი ფაილების ფორმატი" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL სერვერზე შესვლა შეუძლებელია" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "მონაცემთა ბაზები არაა" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "მონაცემთა ბაზები არაა" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "შემოსატანი ფაილი" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6771,71 +6779,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "მოთხოვნების წაკითხვა" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -7026,8 +7034,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7044,130 +7052,130 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Export defaults" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "დამალვა" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "ბინარული" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restart insertion with %s rows" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7221,7 +7229,7 @@ msgstr "" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7512,7 +7520,7 @@ msgstr "ცხრილის პარამეტრები" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Storage Engine" @@ -7632,8 +7640,8 @@ msgstr "მოგესალმებათ %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7705,21 +7713,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "Enter login options for signon authentication" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "ავთენტიფიკაცია..." @@ -7886,20 +7894,21 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "ჰოსტი" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "დაგენერირების დრო" @@ -8143,7 +8152,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "ცხრილის სახელი" @@ -8422,7 +8431,7 @@ msgstr "PDF-ების შექმნა" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" @@ -8491,7 +8500,7 @@ msgstr "მონიშნვის მოხსნა ყველასთვ msgid "Slave configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8502,8 +8511,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8526,31 +8535,31 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "ცვლადი" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "სერვერის ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8559,34 +8568,34 @@ msgstr "ნებისმიერი მომხმარებელი" msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "პაროლის დაგენერირება" @@ -8655,7 +8664,7 @@ msgstr "დეტალები..." msgid "Event name" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "მოვლენის ტიპი" @@ -9064,7 +9073,7 @@ msgstr "No tables found in database." msgid "There are no events to display." msgstr "There are no configured servers" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9074,7 +9083,7 @@ msgstr "There are no configured servers" msgid "The %s table doesn't exist!" msgstr "ცხრილი \"%s\" არ არსებობს!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9123,107 +9132,107 @@ msgstr "ატრიბუტები" msgid "Extra" msgstr "ექსტრა" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "ახალი გვერდის შექმნა" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "ავტომატური განლაგება" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "ყველას მონიშნვა" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "ცხრილების არჩევა" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "სვეტების სახელები" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "ფერის ჩვენება" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "ლანდშაფტური" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "პორტრეტული" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "შეიქმნა" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "გვერდის ზომა" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9520,7 +9529,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "მომხმარებელი" @@ -9662,8 +9671,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9725,11 +9734,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9811,7 +9820,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -9824,12 +9833,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -9860,14 +9869,14 @@ msgid "Column %s has been dropped" msgstr "Table %s has been dropped" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "პირველადი" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "ინდექსი" @@ -9877,7 +9886,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9905,7 +9914,7 @@ msgstr "Relation view" msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9917,7 +9926,7 @@ msgstr "You have to add at least one field." msgid "Add column" msgstr "%s ველის დამატება" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9942,15 +9951,15 @@ msgstr "After %s" msgid "Create an index on  %s columns" msgstr "Create an index on %s columns" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "სტატიკური" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "დინამიური" @@ -9958,15 +9967,15 @@ msgstr "დინამიური" msgid "partitioned" msgstr "დაყოფილი" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "სტრიქონის ზომა" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10018,15 +10027,15 @@ msgstr "სივრცით ინდექსის დამატება" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "ინფორმაცია" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "ეფექტური" @@ -10065,18 +10074,18 @@ msgstr "" msgid "Move column" msgstr "CHAR textarea columns" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "გარდაქმნის პარამეტრები" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10084,36 +10093,36 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "არაა" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10336,7 +10345,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" @@ -10657,29 +10666,29 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "ფაილები" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "ჟურნალის სახელი" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "მდებარეობა" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "საწყისი მდებარეობა" @@ -10687,33 +10696,33 @@ msgstr "საწყისი მდებარეობა" msgid "Character Sets and Collations" msgstr "სიმბოლოთა ნაკრებები და კოლაციები" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databases have been dropped successfully." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "მონაცემთა ბაზების სტატისტიკა" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 #, fuzzy msgid "Master replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 #, fuzzy msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "სტატისტიკის ჩართვა" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10784,52 +10793,52 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 #, fuzzy msgid "Master configuration" msgstr "სერვერის კონფიგურაცია" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10838,275 +10847,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 #, fuzzy msgid "Control slave:" msgstr "Control user" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "მხოლოდ SQL თემების გაშვება" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "გაეშვას მხოლოდ IO სტრუქტურა" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Query cache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Threads" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "დროებითი მონაცემები" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Key cache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "დალაგება" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "ველების რაოდენობა" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "განახლება" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "ფაილები" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "არ შეცვალო პაროლი" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "ინფორმაცია" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11114,120 +11123,120 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Customize startup page" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL სერვერის მუშაობის პერიოდი - %s. გაშვების დრო - %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "მიღებულია" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "ბრძანება" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11235,78 +11244,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11314,7 +11323,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11322,42 +11331,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11365,33 +11374,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11400,244 +11409,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "შემოტანილი ფაილების ფორმატი" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11645,99 +11654,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11745,18 +11754,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11764,73 +11773,73 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Startup" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "ახალი ველის დამატება" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "ინფორმაცია" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11839,7 +11848,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11847,18 +11856,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11866,11 +11875,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11878,95 +11887,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Rename database to" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "ცხრილების არჩევა" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ცხრილის არასწორი სახელი" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "ახალი სერვერის დამატება" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL მოთხოვნები" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "სტატისტიკის ჩევნება" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ყველას მონიშნვა" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11974,7 +11983,7 @@ msgid_plural "%d seconds" msgstr[0] "წამში" msgstr[1] "წამში" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12099,19 +12108,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "სერვერის ცვლადები და პარამეტრები" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "სესიის მნიშვნელობა" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "გლობალური მნიშვნელობა" @@ -12488,44 +12497,44 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters" msgid "Wrong data" msgstr "მონაცემთა ბაზები არაა" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "The columns have been moved successfully." @@ -12688,16 +12697,16 @@ msgstr "რედაქტირების რეჟიმი" msgid "Index name:" msgstr "ინდექსის სახელი:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "ინდექსის ტიპი:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12869,40 +12878,40 @@ msgstr "Export defaults" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Deactivate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Create relation" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Create relation" @@ -13272,8 +13281,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13407,8 +13416,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/kk.po b/po/kk.po index 6fbfad0ce2..9a836be51f 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-06-01 09:41+0200\n" "Last-Translator: Berikbol Zharylkassyn \n" "Language-Team: none\n" -"Language: kk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Show all" msgstr "Бәрін көрсету" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Бет номері:" @@ -43,36 +43,36 @@ msgstr "" "немесе сіздің браузеріңіз екі бет арасындағы жаңартылуды өзінің баптауында, " "қауіпсіздік үшін бұғаттап тастауда." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Іздеу" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -80,28 +80,28 @@ msgstr "Іздеу" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Өту" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Индекс атауы" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Сипаттама" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Осы мәнді қолданыңыз" @@ -123,18 +123,18 @@ msgstr "%1$s дерекқоры құрылды." msgid "Database comment: " msgstr "Дерекқорына түсініктеме: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Кестеге түсініктеме:" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -142,18 +142,18 @@ msgstr "Кестеге түсініктеме:" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Бағана" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -170,11 +170,11 @@ msgstr "Бағана" msgid "Type" msgstr "Типі" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -186,9 +186,9 @@ msgstr "Типі" msgid "Null" msgstr "Бос/Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -201,8 +201,8 @@ msgstr "Бос/Null" msgid "Default" msgstr "Келісім бойынша" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -210,11 +210,11 @@ msgstr "Келісім бойынша" msgid "Links to" msgstr "Сілтемелер" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -223,12 +223,12 @@ msgstr "Сілтемелер" msgid "Comments" msgstr "Түсініктеме" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -239,23 +239,23 @@ msgstr "Түсініктеме" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Жоқ" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -267,8 +267,8 @@ msgstr "Жоқ" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Иә" @@ -278,33 +278,33 @@ msgid "View dump (schema) of database" msgstr "Мәліметтер қорының дамп (схемасын) көру" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Дерекқорында, ешбір кестелер табылмады." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Барлығын ерекшелеу" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Eрекшеленгендерді алып тастау" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Дерекқорының аты көрсетілмеген!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s дерекқорының атауы, мына атауға %2$s, қайта қойылды" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s дерекқоры, мына жерге %2$s көшірілді." -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -313,12 +313,12 @@ msgstr "" "Кейбір ұлғаймалы мүмкіндіктеріне байланысты, PhpMyAdmin қол жетімсіз. " "Себебін анықтау үшін %sмұнда%s басыңыз." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -328,14 +328,14 @@ msgstr "Кесте" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Қатарлар" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Мөлшері" @@ -348,7 +348,7 @@ msgstr "қолданыста" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Құру" @@ -356,7 +356,7 @@ msgstr "Құру" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Соңғы жаңартылым" @@ -364,7 +364,7 @@ msgstr "Соңғы жаңартылым" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Соңғы тексерім" @@ -379,7 +379,7 @@ msgstr[1] "%s кестелерімен" msgid "You have to choose at least one column to display" msgstr "Сұраныс орындалуы үшін, көрсетілімдегі баған/бағандар таңдалуы тиіс" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sСұраныстарды көз мөлшерiмен құрастырушыға%s ауысып қосылу" @@ -411,9 +411,9 @@ msgstr "Қадағаланатын кестелер" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Дерекқор" @@ -431,66 +431,66 @@ msgstr "Жаңартылған" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Күй" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Әрекет" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Көрсету" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Кесте үшін мәліметтерді бақылауды тоқтату" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Жою" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "қосулы" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "өшірулі" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Нұсқа" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Бақылауға болмайтын кестелер" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Кестені бақылау" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Дерекқор журналы" @@ -506,12 +506,12 @@ msgstr "Таңдалынған экспорт типі, файлда сақта msgid "Bad parameters!" msgstr "Параметрлері қате!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файлды сақтау үшін %s дисктегі бос орын жеткіліксіз." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -524,7 +524,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "%s файлын веб-серверге сақтау үшін құқық жеткіліксіз." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "%s файлына дамп сақталынды" @@ -533,164 +533,171 @@ msgstr "%s файлына дамп сақталынды" msgid "Invalid export type" msgstr "Экспорт типі қате" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" баған мәні" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps негізгі қабат ретінде қолданыңыз" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Нүкте" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Нүкте %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Нүкте қосу" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Сызық" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Сыртқы пішін" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Ішкі пішін" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Сызықты қосу" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Көпбұрыш" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Көпбұрышты қосу" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Геометрияны қосу" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Қорытынды" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "\"Функция\" бағанасынан \"GeomFromText\" таңдаңыз және қатар соңына \"мән\" " "ретінде қойыңыз" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту " "әдістері, %sқұжаттамада%s сипатталған." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Файлды оқу мүмкін емес" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-сұранысы сәтті орындалды" @@ -705,7 +712,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "PhpMyAdmin мен жұмыс істеу үшін, фреймдерді қолдайтын браузер керек." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі" @@ -714,7 +721,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө msgid "Do you really want to execute \"%s\"?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 #, fuzzy msgid "You are about to DESTROY a complete database!" msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!" @@ -756,7 +763,7 @@ msgstr "Индекс қосу" msgid "Edit Index" msgstr "Индексті өзгерту" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -807,24 +814,24 @@ msgstr "Жабу" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Өзгерту" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Трафиктің графикалық қорытындысы" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Қосылыстар мен процесстердің графикалық құрытындысы" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Сұраныстардың графикалық қорытындысы" @@ -834,24 +841,24 @@ msgstr "Статикалық мәлiметтер" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Барлығы" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Басқа" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -872,7 +879,7 @@ msgstr "Сервер трафигі (KiB)" msgid "Connections since last refresh" msgstr "Соңғы жаңартылған сәттен бастап қосылыстар." -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процесстер" @@ -890,7 +897,7 @@ msgstr "Соңғы жаңартылған сәттен басталған сұр msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Сұраныстардың статистикасы" @@ -932,13 +939,13 @@ msgstr "Үстемелеу жүйесі" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -991,32 +998,32 @@ msgstr "" msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЭБ" @@ -1030,11 +1037,11 @@ msgstr "%d Кесте(лер)" msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Баптау" @@ -1055,12 +1062,12 @@ msgid "Please add at least one variable to the series" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Жоқ" @@ -1153,7 +1160,7 @@ msgstr "Баптауын өзгерту" msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "График тақырыбы" @@ -1233,7 +1240,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Уақыт" @@ -1323,8 +1330,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1535,12 +1542,12 @@ msgstr "Сұраныстың орындалу уақыты" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Сақтау" @@ -1596,8 +1603,8 @@ msgstr "Сұраныс нәтижелері" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Елемеу" @@ -1696,7 +1703,7 @@ msgstr "Мәліметтер қатарын(ларын) көрсету" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Шығару" @@ -1793,63 +1800,63 @@ msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Жел" @@ -1887,32 +1894,32 @@ msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Сен" @@ -2025,16 +2032,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "секундке" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "Минутқа" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "сағатқа" @@ -2051,7 +2058,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2074,14 +2081,14 @@ msgid "en" msgstr "kk" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Қате" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2099,210 +2106,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Сұранысты жіберу" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Шолу" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Тазарту" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2320,105 +2327,105 @@ msgstr "" msgid "Font size" msgstr "Қарiп өлшемi" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Өсу бойынша" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Кему бойынша" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Сұрыптау" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Белгі" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Белгі қатарларын Қосу/Өшіру" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Бағандарды Қосу/Өшіру" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Жаңартылуға жіберілген сұраныс" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Кестелерді қолдану" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Немесе" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Және" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Қою" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Өшіру" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Өзгерту" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "%s дерекқорына SQL сұранысы" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "кез-келген сөз" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "барлық сөздер" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "дәл сәйкестiк" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "жүйелі түрде айтылу" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s іздеу нәтижесі:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Барлығы: %s сәйкестік" msgstr[1] "Барлығы: %s сәйкестіктер" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2427,44 +2434,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s кестедегi сәйкестiк %2$s" msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Жою" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Дерекқорынан іздеу" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Іздеу үшін сөз немесе мағына (топтық таңба \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Сайт бойынша іздеу:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Сөз, бос орынмен бөлінеді (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Кесте бойынша:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Бағана бойынша" @@ -2509,8 +2516,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2587,7 +2594,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2604,8 +2611,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2616,7 +2623,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2627,7 +2634,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Белгi соғылғандарды:" @@ -2637,8 +2644,8 @@ msgstr "Белгi соғылғандарды:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Барлығын белгілеу" @@ -2676,51 +2683,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Файлды жүктеу, оның кеңейтілім салдарынан тоқтатылды." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Файлды жүктеу кезіндегі белгісіз қате." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Жүктелген файлды ауыстыру кезіндегі қате." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін емес." @@ -2729,66 +2736,66 @@ msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін е msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Индексі анықталмаған!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Индекстер" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Салыстыру" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Пікірлеу" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s жойылған болатын" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2797,12 +2804,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Дерекқоры" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2870,18 +2877,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Репликация" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3010,8 +3017,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3021,11 +3028,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3033,60 +3040,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3159,14 +3166,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3411,7 +3418,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3425,12 +3432,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3532,7 +3539,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3670,22 +3677,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3952,7 +3959,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4061,7 +4068,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4097,7 +4104,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5533,10 +5540,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5786,52 +5793,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5961,8 +5976,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6036,69 +6051,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6174,71 +6189,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6429,8 +6444,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6445,123 +6460,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6605,7 +6620,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6892,7 +6907,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7006,8 +7021,8 @@ msgstr "%s-ге қош келдіңіз" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7077,21 +7092,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7228,20 +7243,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7466,7 +7482,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7666,7 +7682,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7732,7 +7748,7 @@ msgstr "Барлық белгілерді алып тастау" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7743,8 +7759,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7764,31 +7780,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7797,34 +7813,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7883,7 +7899,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8221,7 +8237,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8230,7 +8246,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8276,97 +8292,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Мәлiметтердiң сөздiгi" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8658,7 +8674,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8791,8 +8807,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8849,11 +8865,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8935,7 +8951,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s кестесі аластанды" @@ -8948,12 +8964,12 @@ msgstr "Бақылау қосулы" msgid "Tracking is not active." msgstr "Бақылауды белсендендірілу" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s көрсетілімі жойылған" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s кестесі жойылған болатын" @@ -8981,14 +8997,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8998,7 +9014,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9023,7 +9039,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9031,7 +9047,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9054,15 +9070,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9070,15 +9086,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9126,15 +9142,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9162,18 +9178,18 @@ msgstr "" msgid "Move column" msgstr "Бағана іші" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9181,33 +9197,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9381,7 +9397,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9656,29 +9672,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9686,31 +9702,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9778,49 +9794,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9829,255 +9845,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10085,115 +10101,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10201,78 +10217,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10280,7 +10296,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10288,42 +10304,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10331,33 +10347,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10366,242 +10382,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10609,99 +10625,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10709,18 +10725,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10728,61 +10744,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10791,7 +10807,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10799,18 +10815,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10818,11 +10834,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10830,86 +10846,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11025,19 +11041,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11321,42 +11337,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11487,16 +11503,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11655,38 +11671,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12049,8 +12065,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12175,8 +12191,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ko.po b/po/ko.po index bec0d1dd34..017636a950 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-31 08:07+0200\n" "Last-Translator: Namuk Kang \n" -"Language-Team: Korean \n" -"Language: ko\n" +"Language-Team: Korean \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: Weblate 1.2\n" @@ -20,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "페이지 번호:" @@ -38,36 +39,36 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "검색" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +76,28 @@ msgstr "검색" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "실행" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "키 이름" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "설명" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "이 값을 사용합니다" @@ -118,18 +119,18 @@ msgstr "데이터베이스 %1$s가 생성되었습니다." msgid "Database comment: " msgstr "데이터베이스 설명: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,18 +138,18 @@ msgstr "테이블 설명" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "컬럼명" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +166,11 @@ msgstr "컬럼명" msgid "Type" msgstr "종류" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +182,9 @@ msgstr "종류" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "기본값" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +206,11 @@ msgstr "기본값" msgid "Links to" msgstr "링크 대상:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +219,12 @@ msgstr "링크 대상:" msgid "Comments" msgstr "설명" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +235,23 @@ msgstr "설명" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "아니오" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +263,8 @@ msgstr "아니오" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "예" @@ -273,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "모두 선택" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "데이터베이스 %1$s 의 이름을 %2$s 로 변경하였습니다." -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "데이터베이스 %1$s 을(를) %2$s 로 복사하였습니다." -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -308,12 +309,12 @@ msgstr "" "phpMyAdmin 설정 스토리지가 비활성화 되어 있습니다. 원인을 확인하려면 %s여기" "를 클릭%s하십시오." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -323,14 +324,14 @@ msgstr "테이블 " #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "행" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "크기" @@ -343,7 +344,7 @@ msgstr "사용중" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "생성" @@ -351,7 +352,7 @@ msgstr "생성" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "마지막 업데이트" @@ -359,7 +360,7 @@ msgstr "마지막 업데이트" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "마지막 검사" @@ -373,7 +374,7 @@ msgstr[0] "%s개 테이블 " msgid "You have to choose at least one column to display" msgstr "출력하려면 적어도 1개 이상의 열을 선택해야 합니다." -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s비주얼 쿼리 빌더%s로 전환" @@ -405,9 +406,9 @@ msgstr "추적된 테이블" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "데이터베이스" @@ -425,66 +426,66 @@ msgstr "수정됨" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "상태" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "실행" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "보기" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "삭제" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "활성" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "비활성" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "버전" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "추적 보고서" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "구조 요약" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "추적되지 않은 테이블" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "테이블 추적" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "데이터베이스 로그" @@ -500,12 +501,12 @@ msgstr "선택한 내보내기가 파일에 저장되었습니다!" msgid "Bad parameters!" msgstr "잘못된 인자!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "파일 %s를 저장하기에 공간이 부족합니다." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -518,7 +519,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "웹 서버에 파일 %s를 저장할 권한이 없습니다." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "덤프 파일이 %s에 저장되었습니다." @@ -527,117 +528,124 @@ msgstr "덤프 파일이 %s에 저장되었습니다." msgid "Invalid export type" msgstr "잘못된 내보내기 타입" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\"행의 값" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "기본 레이어로 OpenStreetMaps를 사용" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometry" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "포인트" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "포인트 %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "포인트 추가하기" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "줄(열) 구분자" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "외륜" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "내륜" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "선 추가" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "내부 링 추가" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "폴리곤" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "폴리곤 추가" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "공간 데이터를 추가" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "출력" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "\"기능\"컬럼에서 \"GeomFromText\"를 선택하고 아래 문자를 복사하여 \"값\"필드" "에 붙여넣으십시오." -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s" "를 참조하여 주십시오." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "북마크 보이기" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -646,7 +654,7 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: import.php:400 +#: import.php:404 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 " @@ -656,27 +664,27 @@ msgstr "" "대 파일 크기를 초과했을 수 있습니다. [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a] 참조." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "문자셋 변환 라이브러리 없이 파일의 문자셋을 변환할 수 없습니다." -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "북마크 %s가 생성되었습니다." -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -684,7 +692,7 @@ msgstr "" "스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 " "파일을 다시 전송해주십시오." -#: import.php:513 +#: import.php:517 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." @@ -692,9 +700,9 @@ msgstr "" "파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고" "는 이 가져오기를 마칠 수 없음을 뜻합니다." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "질의가 바르게 실행되었습니다." @@ -708,7 +716,7 @@ msgstr "뒤로" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." @@ -717,7 +725,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Do you really want to execute \"%s\"?" msgstr "정말로 \"%s\"을/를 실행하시겠습니까?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" @@ -757,7 +765,7 @@ msgstr "인덱스 추가" msgid "Edit Index" msgstr "인덱스 수정" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "인덱스에 %d 열 추가" @@ -807,24 +815,24 @@ msgstr "닫기" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "수정" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "실시간 전송량 도표" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "실시간 연결/프로세스 도표" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "실시간 쿼리 도표" @@ -834,24 +842,24 @@ msgstr "정적 데이터" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "전체 쿼리수" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "기타" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -871,7 +879,7 @@ msgstr "서버 전송량(KiB)" msgid "Connections since last refresh" msgstr "마지막 새로고침 이후 연결 수" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "프로세스" @@ -889,7 +897,7 @@ msgstr "마지막 새로고침 이후 Questions" msgid "Questions (executed statements by the server)" msgstr "Questions(서버에 의해 실행된 문장)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "질의 통계" @@ -934,13 +942,13 @@ msgstr "시스템 스왑" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -992,32 +1000,32 @@ msgstr "바이트 보냄" msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "연결 수" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1031,11 +1039,11 @@ msgstr "%d개 테이블(s)" msgid "Questions" msgstr "질의" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "소통량" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "설정" @@ -1056,12 +1064,12 @@ msgid "Please add at least one variable to the series" msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "없음" @@ -1161,7 +1169,7 @@ msgstr "설정 변경" msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "차트 제목" @@ -1245,7 +1253,7 @@ msgstr "SQL 해석" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "시간" @@ -1339,8 +1347,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" @@ -1467,12 +1475,10 @@ msgid "Foreign key check:" msgstr "외래 키(foreign key) 체크 사용 안함" #: js/messages.php:258 libraries/mult_submits.inc.php:324 -#| msgid "Enabled" msgid "(Enabled)" msgstr "(사용함)" #: js/messages.php:259 libraries/mult_submits.inc.php:324 -#| msgid "Disabled" msgid "(Disabled)" msgstr "(사용안함)" @@ -1555,12 +1561,12 @@ msgstr "질의 실행 시간" msgid "%d is not valid row number." msgstr "%d는 올바른 행번호가 아닙니다." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "저장" @@ -1617,8 +1623,8 @@ msgstr "질의 결과" msgid "Data point content" msgstr "테이블 설명" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "무시" @@ -1726,7 +1732,7 @@ msgstr "행 업데이트" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1832,63 +1838,63 @@ msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "12월" @@ -1929,32 +1935,32 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "토" @@ -2070,16 +2076,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2096,7 +2102,7 @@ msgstr "최대: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "문서" @@ -2119,14 +2125,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "오류" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL 질의" @@ -2144,211 +2150,211 @@ msgstr "SQL 질의" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL 검증을 하기 위한 연결이 실패했습니다." -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL 해석 생략" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "질의 실행" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "다시 보기" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL 검사" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "이 쿼리 인라인 수정" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "인라인" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "프로파일링" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "일" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %s분 %s초" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "매개 변수 누락:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "처음" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "이전" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "다음" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "마지막" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "구조" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "삽입" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "보기" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "테이블 작업" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "업로드할 파일이 없습니다." -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "비우기" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "실행하기" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "인쇄" @@ -2365,104 +2371,104 @@ msgstr "" msgid "Font size" msgstr "글꼴 크기" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "오름차순" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "내림차순" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "정렬" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "조건행 추가/삭제" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "컬럼 추가/삭제" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "질의 업데이트" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "사용할 테이블" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "또는" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "그리고" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "삽입" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "삭제" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "수정" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "아무 단어나" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "모든 단어" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "정확한 문구" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "정규표현식" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\"의 검색 결과 %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "총: %s 건 일치" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2470,44 +2476,44 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "테이블 %s에서 %s 건 일치" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "삭제" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "데이터베이스 검색" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "찾을 단어, 값 (와일드카드: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "찾는 방식:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "단어는 스페이스(\" \")로 구분됩니다." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "검색할 테이블:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "검색할 컬럼:" @@ -2556,8 +2562,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2640,7 +2646,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Kill" @@ -2657,8 +2663,8 @@ msgstr "질의(in query)" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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를 참조해 주십시오." @@ -2670,7 +2676,7 @@ msgstr "행(레코드) 보기" msgid "total" msgstr "합계" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" @@ -2681,7 +2687,7 @@ msgstr "질의 실행시간 %01.4f 초" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "선택한 것을:" @@ -2691,8 +2697,8 @@ msgstr "선택한 것을:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "모두 체크" @@ -2733,43 +2739,43 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "다." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "디스크 쓰기에 실패했습니다." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2777,11 +2783,11 @@ msgstr "" "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "업로드 파일을 읽을 수 없습니다." @@ -2790,68 +2796,68 @@ msgstr "업로드 파일을 읽을 수 없습니다." msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "인덱스가 설정되지 않았습니다!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "인덱스" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "데이터정렬방식" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "설명" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "기본 키를 제거했습니다" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "인덱스 %s 를 제거했습니다" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2860,12 +2866,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "데이터베이스 " #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "서버" @@ -2935,19 +2941,19 @@ msgstr "사용자" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "바이너리" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "복제" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "환경설정값" @@ -3075,8 +3081,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "함수" @@ -3087,11 +3093,11 @@ msgstr "함수" msgid "Operator" msgstr "테이블 작업" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "값" @@ -3101,67 +3107,67 @@ msgstr "값" msgid "Table Search" msgstr "검색" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "삽입" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "필드 선택 (하나 이상):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "검색 조건 추가 (\"where\" 조건):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "페이지당 레코드 수" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "출력 순서:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL 질의" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3236,14 +3242,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3494,7 +3500,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "테이블 수" @@ -3508,12 +3514,12 @@ msgstr "테이블 수" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "데이터" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "부담" @@ -3625,7 +3631,7 @@ msgstr "" msgid "Closed" msgstr "따옴표(quote)가 닫히지 않았음" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3772,22 +3778,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "리세트" @@ -4062,7 +4068,7 @@ msgstr "파일 문자셋" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "형식" @@ -4171,7 +4177,7 @@ msgstr "레이블 키" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME 형식" @@ -4208,7 +4214,7 @@ msgid "Enclose table and column names with backquotes" msgstr "테이블과 열 이름을 백쿼트(`)로 감싸기" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL 호환 모드" @@ -5708,10 +5714,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5977,54 +5983,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "서버 응답이 없습니다" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "암호 변경" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "암호 없음" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "재입력" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6169,8 +6183,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6256,71 +6270,71 @@ msgstr "서버 버전" msgid "authored on %1$s by %2$s" msgstr "서버 버전" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL 서버에 로그인할 수 없습니다" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "데이터베이스가 없습니다" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "데이터베이스가 없습니다" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6399,72 +6413,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6655,8 +6669,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6672,127 +6686,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "구조만" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "바이너리" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "필드의 길이 때문에,
이 필드를 편집할 수 없습니다 " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지 " -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다." -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6840,7 +6854,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7131,7 +7145,7 @@ msgstr "테이블 옵션" msgid "Rename table to" msgstr "테이블 이름 바꾸기" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7251,8 +7265,8 @@ msgstr "%s에 오셨습니다" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -7327,21 +7341,21 @@ msgstr "사용자명/암호가 틀렸습니다. 접근이 거부되었습니다. msgid "Can not find signon authentication script:" msgstr "인증중입니다..." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "인증중입니다..." @@ -7494,20 +7508,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "호스트" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "처리한 시간" @@ -7748,7 +7763,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7950,7 +7965,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8016,7 +8031,7 @@ msgstr "모두 체크안함" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8027,8 +8042,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8049,32 +8064,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "변수" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "서버" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "아무나" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8083,34 +8098,34 @@ msgstr "아무나" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8174,7 +8189,7 @@ msgstr "" msgid "Event name" msgstr "질의 종류" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "질의 종류" @@ -8552,7 +8567,7 @@ msgstr "데이터베이스에 테이블이 없습니다." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8562,7 +8577,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "\"%s\" 테이블이 존재하지 않습니다!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8610,104 +8625,104 @@ msgstr "보기" msgid "Extra" msgstr "추가" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "새 페이지 만들기" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "페이지:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy msgid "Automatic layout based on" msgstr "서버 버전" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "편집할 페이지를 선택하세요" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy msgid "Select page" msgstr "모두 선택" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 #, fuzzy msgid "Select Tables" msgstr "모두 선택" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "열(칼럼) 이름" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "grid 보기" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "색깔 보기" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "모든 테이블을 같은 너비로 출력할까요?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "생성" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9008,7 +9023,7 @@ msgstr ""%s" 에 접근할 수 있는 사용자들" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "사용자" @@ -9152,8 +9167,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9214,11 +9229,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9304,7 +9319,7 @@ msgstr "" "질의 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 필수 PHP 확장모듈을 " "설치했는지 확인해 보십시오." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" @@ -9317,12 +9332,12 @@ msgstr "트래킹이 활성화되었습니다." msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s를 제거했습니다." @@ -9353,14 +9368,14 @@ msgid "Column %s has been dropped" msgstr "테이블 %s 을 제거했습니다." #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "기본" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "인덱스" @@ -9370,7 +9385,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9398,7 +9413,7 @@ msgstr "" msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9409,7 +9424,7 @@ msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합 msgid "Add column" msgstr "필드 추가하기" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" @@ -9433,15 +9448,15 @@ msgstr "%s 다음에" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "정적" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "동적(다이내믹)" @@ -9449,15 +9464,15 @@ msgstr "동적(다이내믹)" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "행 길이" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Row size" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9507,16 +9522,16 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "FULLTEXT 인덱스 추가" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "로그인 정보" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "공간 사용량" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "실제량" @@ -9549,18 +9564,18 @@ msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 msgid "Move column" msgstr "컬럼 제거" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9571,36 +9586,36 @@ msgstr "" "오: 'a',100, b,'c'...
여기에 역슬래시(\\)나 작은 따옴표(')를 넣어야 한다" "면, 그 앞에 역슬래시를 사용하십시오. (예: '\\\\xyz' 또는 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "없음" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s 다음에" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9779,8 +9794,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: main.php:468 #, php-format @@ -9796,7 +9811,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "데이터베이스가 없습니다" @@ -10103,30 +10118,30 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "필드" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10134,31 +10149,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s 데이터베이스를 삭제했습니다." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "데이터베이스 사용량 통계" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "통계 보기" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10231,50 +10246,50 @@ msgstr "권한을 다시 로딩했습니다." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "권한을 다시 로딩했습니다." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10283,274 +10298,274 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "데이터베이스를 선택하세요" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "구조만" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "구조만" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "질의 종류" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "확장된 inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "테이블 보기" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "런타임 정보" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of columns" msgid "Number of data points: " msgstr "컬럼수" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "암호를 변경하지 않음" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "테이블 보기" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "테이블 보기" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy msgid "Related links:" msgstr "테이블 작업" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "질의 종류" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "함수" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10558,117 +10573,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "명세" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "이 MySQL 서버는 %s 동안 구동되었습니다.
구동 시작날짜는 %s 입니다." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "받음" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "보냄" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "최대 동시 연결" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "커맨드" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "연결을 닫지 않고 클라이언트가 종료되어서 실패한 연결의 숫자" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL 서버에 연결 실패한 횟수" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL 서버에 연결 시도한 횟수" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10676,78 +10691,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10755,7 +10770,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10763,42 +10778,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10806,33 +10821,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10841,243 +10856,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "파일 문자셋:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11085,99 +11100,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11185,18 +11200,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11204,68 +11219,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "트래킹이 활성화되어 있지 않습니다." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "토" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "필드 추가하기" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "컬럼 추가/삭제" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11274,7 +11289,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11282,18 +11297,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11301,11 +11316,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11313,94 +11328,94 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "데이터베이스 이름 변경" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy msgid "Select series:" msgstr "모두 선택" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "새 사용자 추가" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL 질의" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "행(레코드) 통계" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy msgid "Selected time range:" msgstr "모두 선택" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "질의 종류" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 초" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11518,19 +11533,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "서버의 환경설정" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "세션 값" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11821,44 +11836,44 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함" msgid "Wrong data" msgstr "데이터베이스가 없습니다" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL 결과" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12019,16 +12034,16 @@ msgstr "인덱스 추가" msgid "Index name:" msgstr "인덱스 이름:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "인덱스 종류:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "%s개 열(칼럼)에 인덱스 추가" @@ -12196,40 +12211,40 @@ msgstr "" msgid "Show versions" msgstr "버전 보기" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "지금 비활성화" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "지금 비활성화" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "지금 활성화" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "지금 활성화" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "서버 버전" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "서버 버전" @@ -12592,8 +12607,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12723,8 +12738,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/lt.po b/po/lt.po index acc2eaf876..f93a76cf96 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-03 16:29+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Puslapis:" @@ -39,36 +39,36 @@ 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:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Paieška" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Paieška" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Vykdyti" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Indekso pavadinimas" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Paaiškinimas" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Naudokite šią reikšmę" @@ -119,18 +119,18 @@ msgstr "Duomenų bazė %1$s sukurta." msgid "Database comment: " msgstr "Duomenų bazės komentaras: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Lentelės komentarai" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Stulpelis" msgid "Type" msgstr "Tipas" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Tipas" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "Nutylint" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Nutylint" msgid "Links to" msgstr "Sąryšis su" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Sąryšis su" msgid "Comments" msgstr "Komentarai" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Komentarai" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Taip" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Pažymėti visas" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Atžymėti visas" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Nenurodytas duomenų bazės vardas!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Duomenų bazė %s pervadinta į %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Duomenų bazė %s buvo nukopijuota į %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Lentelė" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Eilutės" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Dydis" @@ -345,7 +345,7 @@ msgstr "šiuo metu naudojama" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Sukurta" @@ -353,7 +353,7 @@ msgstr "Sukurta" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Paskutinis atnaujinimas" @@ -361,7 +361,7 @@ msgstr "Paskutinis atnaujinimas" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Paskutinis patikrinimas" @@ -377,7 +377,7 @@ msgstr[2] "%s lentelių" msgid "You have to choose at least one column to display" msgstr "Pasirinkite bent vieną stulpelį išvedimui" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pereiti į %svizualią daryklę%s" @@ -409,9 +409,9 @@ msgstr "Sekamos lentelės" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Duomenų bazė" @@ -429,66 +429,66 @@ msgstr "Atnaujinta" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Būsena" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Veiksmas" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Rodyti" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ištrinti šios lentelės sekimo duomenis" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Šalinti" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktyvus" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "neaktyvus" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versijos" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nesekamos lentelės" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Sekti lentelę" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Duomenų bazės žurnalas" @@ -504,12 +504,12 @@ msgstr "Pasirinktas eksportavimo tipas gali būti saugomas tik faile!" msgid "Bad parameters!" msgstr "Blogi parametrai!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -522,7 +522,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." @@ -531,123 +531,126 @@ msgstr "Atvaizdis įrašytas faile %s." msgid "Invalid export type" msgstr "Neteisingas eksportavimo tipas" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Reikšmė „%s“ stulpeliui" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Taškas" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Taškas %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Pridėti tašką" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Eilutės baigiasi" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Daugiakampis" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Pridėti daugiakampį" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add event" msgid "Add geometry" msgstr "Pridėti įvykį" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Išvedimas" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " -"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" +"sdokumentaciją%s būdams kaip apeiti šį apribojimą." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Negalima perskaityti failo" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -656,7 +659,7 @@ msgstr "" "Jūs bandote įkelti failą su nepalaikomu glaudinimu (%s). Palaikymas gali " "būti neįgyvendintas arba išjungtas Jūsų konfigūracijoje." -#: import.php:400 +#: import.php:404 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 " @@ -666,28 +669,28 @@ msgstr "" "failo dydis viršija didžiausią leidžiamą dydį PHP konfigūracijos. Žiūrėti " "[a@./Documentation.html#faq1_16@Documentation]DUK 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Negalima perkonvertuoti failo ženklų rinkinio be ženklų rinkinio " "konvertavimo bibliotekos" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -695,7 +698,7 @@ msgstr "" "Baigėsi skripto vykdymui skirtas laikas, jeigu norite pabaigti importuoti " "prašome dar kartą siųsti tą patį failą ir importavimas bus tęsiamas." -#: import.php:513 +#: import.php:517 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." @@ -704,9 +707,9 @@ msgstr "" "dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs " "padidintumėte PHP laiko limitą." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jūsų SQL užklausa sėkmingai įvykdyta" @@ -721,7 +724,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." @@ -731,7 +734,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." msgid "Do you really want to execute \"%s\"?" msgstr "Ar tikrai norite " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -771,7 +774,7 @@ msgstr "Pridėti indeksą" msgid "Edit Index" msgstr "Redaguoti indeksą" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Pridėti %d stulpelį(-ius) į indeksą" @@ -821,24 +824,24 @@ msgstr "Uždaryti" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Tiesioginių duomenų srauto diagrama" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Tiesioginių prisijungimų/procesų diagrama" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Tiesioginė užklausos diagrama" @@ -848,24 +851,24 @@ msgstr "Statiniai duomenys" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -885,7 +888,7 @@ msgstr "Serverio duomenų srautas (KiB)" msgid "Connections since last refresh" msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesai" @@ -903,7 +906,7 @@ msgstr "Questions nuo paskutinio atnaujinimo" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Užklausų statistika" @@ -947,13 +950,13 @@ msgstr "Sistemos swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1005,32 +1008,32 @@ msgstr "Išsiųsta baitų" msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Prisijungimai" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1044,11 +1047,11 @@ msgstr "%d lentelė(-ės)" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Nustatymai" @@ -1071,12 +1074,12 @@ msgid "Please add at least one variable to the series" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ne" @@ -1173,7 +1176,7 @@ msgstr "Keisti nustatymus" msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Diagramos antraštė" @@ -1262,7 +1265,7 @@ msgstr "Paaiškinti SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Laikas" @@ -1372,8 +1375,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" @@ -1601,12 +1604,12 @@ msgstr "Užklausos vykdymo laikas" msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Išsaugoti" @@ -1666,8 +1669,8 @@ msgstr "Užklausos rezultatai" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoruoti" @@ -1770,7 +1773,7 @@ msgstr "Atnaujinti eilutę(es)" msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generuoti" @@ -1873,63 +1876,63 @@ msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Grd" @@ -1970,32 +1973,32 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Šeš" @@ -2090,8 +2093,8 @@ msgstr "" #| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "" -"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: " -"%s" +"Nepavyko suformuoti eilutės taisyklei „%s“. PHP išspjovė štai tokią klaidą: %" +"s" #: libraries/Advisor.class.php:361 #, php-format @@ -2115,16 +2118,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per sekundę" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minutę" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per valandą" @@ -2141,7 +2144,7 @@ msgstr "Didžiausias dydis: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacija" @@ -2164,14 +2167,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Klaida" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL užklausa" @@ -2189,83 +2192,83 @@ msgstr "SQL užklausa" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie SQL tikrintuvo!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Vykdyti užklausą" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Greitas užklausos redagavimas" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiliavimas" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sek" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Trūkstamas parametras:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2273,28 +2276,28 @@ msgctxt "First page" msgid "Begin" msgstr "Pradžia" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Ankstesnis" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Kitas" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2302,105 +2305,105 @@ msgctxt "Last page" msgid "End" msgstr "Pabaiga" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktūra" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Įterpti" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Peržiūrėti" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Veiksmai" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Išvalyti" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Vykdyti" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Spausdinti" @@ -2418,98 +2421,98 @@ msgstr "" msgid "Font size" msgstr "Šrifto dydis" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Didėjimo tvarka" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Mažėjimo tvarka" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Rūšiuoti" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterijai" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Įterpti/Pašalinti požymio eilutes" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Įterpti/trinti stulpelius" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Atnaujinti užklausą" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Naudoti lenteles" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Arba" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ir" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Įterpiant" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Pakeičiant" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Keisti" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-užklausa duomenų bazėje %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "bent vienas iš žodžių" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "visi žodžiai" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "ištisa frazė" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kaip reguliarųjį išsireiškimą" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Paieškos rezultatai frazei „%s“ %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2517,7 +2520,7 @@ msgstr[0] "Iš viso: %s atitikmuo" msgstr[1] "Iš viso: %s atitikmenys" msgstr[2] "Iš viso: %s atitikmenų" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2527,44 +2530,44 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Trinti" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Paieška duomenų bazėje" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simboliui: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Rasti:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Žodžiai atskirti tarpo simboliu („ “)." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Viduje lentelių:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Stulpelio viduje:" @@ -2612,8 +2615,8 @@ msgstr "Vykdyti kas" msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2692,7 +2695,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Stabdyti procesą" @@ -2711,11 +2714,11 @@ msgstr "užklausa vykdoma" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " -"%sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" +"sdokumentacijoje%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2725,7 +2728,7 @@ msgstr "Rodomi įrašai" msgid "total" msgstr "iš viso" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." @@ -2736,7 +2739,7 @@ msgstr "Užklausa užtruko %01.4f sek." #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Pasirinktus:" @@ -2746,8 +2749,8 @@ msgstr "Pasirinktus:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Pažymėti visas" @@ -2785,15 +2788,15 @@ msgstr "Sąryšis nerastas" msgid "Too many error messages, some are not displayed." msgstr "Per daug klaidų žinučių, dėl to kai kurių neparodėme." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Failas nebuvo įkeltasis failas." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2801,27 +2804,27 @@ msgstr "" "Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML " "formoje." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Įkeliamas failas buvo tik dalinai įkeltas." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Trūksta laikino katalogo." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Nepavyko įrašyti failo į diską." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2829,11 +2832,11 @@ msgstr "" "Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation." "html#faq1_11@Documentation]DUK 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Negalima perskaityti (perkelti) įkelto failo." @@ -2842,68 +2845,68 @@ msgstr "Negalima perskaityti (perkelti) įkelto failo." msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Slapukai turi būti priimami." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Slapukai turi būti priimami." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nėra aprašytų indeksų!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksai" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Palyginimas" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentaras" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Panaikintas pirminis raktas" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeksas %s ištrintas" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2913,12 +2916,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Duomenų bazės" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Serveris" @@ -2988,18 +2991,18 @@ msgstr "Naudotojas" msgid "Synchronize" msgstr "Sinchronizuoti" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Dvejetainis log'as" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikavimas" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Kintamieji" @@ -3134,8 +3137,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3145,11 +3148,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operatorius" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Reikšmė" @@ -3159,70 +3162,70 @@ msgstr "Reikšmė" msgid "Table Search" msgstr "Paieška" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Įterpti" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Pasirinkite stulpelius (bent vieną):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Eilučių skaičius puslapyje" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Atvaizdavimo tvarka:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Maksimalus skaičius eilučių rodymui" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Slėpti paieškos kriterijų" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "Kontroliuoti naudotoją" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3297,14 +3300,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3555,7 +3558,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Lentelės" @@ -3569,12 +3572,12 @@ msgstr "Lentelės" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Duomenys" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Perteklius" @@ -3683,7 +3686,7 @@ msgstr "Atverti" msgid "Closed" msgstr "Uždarytas" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3822,22 +3825,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Šis nustatymas išjungtas, tai nebus taikoma jūsų konfigūracijoje" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Nustatyti reikšmę: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Atstatyti numatytąsias reikšmes" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Leisti naudotojams adaptuoti šią reikšmę" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -4124,7 +4127,7 @@ msgstr "Failo simbolių koduotė:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formatas" @@ -4233,7 +4236,7 @@ msgstr "Pavadinimo raktas" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME tipas" @@ -4269,7 +4272,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Įdėti lentelių ir laukų pavadinimus į kabutes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL suderinamumo režimas" @@ -5820,10 +5823,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6084,7 +6087,7 @@ msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6092,48 +6095,56 @@ msgid "" "configured)." msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatsako" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalės..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nėra slaptažodžio" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Įveskite dar kartą" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Slaptažodžių Hešavimas" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Suderinamas su MySQL 4.0" @@ -6263,8 +6274,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -6343,7 +6354,7 @@ msgstr "Sukurti versiją" msgid "authored on %1$s by %2$s" msgstr "Sukurti versiją" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6353,64 +6364,64 @@ msgstr "" "žinoma klaida webkit varikliu paremtose saityno naršyklėse (Safari, Google " "Chrome, Arora ir pan.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Įkelto failo formatas" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Failas apdorojamas, prašome palaukti." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "Prašome palaukti, failas siunčiamas. Informacijos apie siuntimą nėra." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importuojama į šį serverį" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importuojama į duomenų bazę „%s“" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importuojama į lentelę „%s“" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Failas importavimui:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Failas gali būti suglaudintas (%s) arba nesuglaudintas." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6493,72 +6504,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB būsena" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Buferio Pool'o naudojimas" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "puslapiai" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 #, fuzzy msgid "Dirty pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Puslapiai su duomenimis" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Buferio pool'o veikla" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Skaitymo užklausos" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Įrašymo užklausos" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Skaitymo nepataikymai" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Rašymas laukia" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Skaitymo nepataikymai %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Rašymas laukia %" @@ -6762,8 +6773,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6778,132 +6789,132 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Eiti į rodinį (view)" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Paslėpti" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Dvejetainis" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -6947,7 +6958,7 @@ msgstr "Pridėti lentelės priešdėlį" msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7236,7 +7247,7 @@ msgstr "Lentelės parinktys" msgid "Rename table to" msgstr "Pervadinti lentelę į" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Saugojimo variklis" @@ -7350,8 +7361,8 @@ msgstr "Jūs naudojate %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -7431,21 +7442,21 @@ msgstr "Neteisingas naudotojo vardas arba slaptažodis. Priėjimas uždraustas." msgid "Can not find signon authentication script:" msgstr "Nepavyko surasti prisijungimo tapatumo nustatymo scenarijaus:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Failas %s neturi jokio raktinio id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Aparatūros atpažinimas nepavyko" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Prijungtas netinkamas atpažinimo raktas" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Nustatomas tapatumas..." @@ -7584,20 +7595,21 @@ msgstr "Rodyti MIME-tipus" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Darbinė stotis" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Atlikimo laikas" @@ -7852,7 +7864,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Neteisingas stulpelių skaičius CSV įvedimo eilutėje %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Lentelės vardas" @@ -8121,7 +8133,7 @@ msgstr "PDF failo generavimas" msgid "Displaying Column Comments" msgstr "Išvesti stulpelių komentarus" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Naršyklės transformacija" @@ -8196,7 +8208,7 @@ msgstr "Atžymėti visas" msgid "Slave configuration" msgstr "Pavaldžiojo (Slave) serverio konfigūracija" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį" @@ -8210,8 +8222,8 @@ msgstr "" "skiltį:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8231,31 +8243,31 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Kintamasis" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Serverio ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Bet kurį vartotoją" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8264,34 +8276,34 @@ msgstr "Bet kurį vartotoją" msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generuoti slaiptažodį" @@ -8352,7 +8364,7 @@ msgstr "Detalės" msgid "Event name" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Įvykio tipas" @@ -8704,7 +8716,7 @@ msgstr "Nėra įvykio su vardu %1$s duomenų bazėje %2$s" msgid "There are no events to display." msgstr "Nėra įvykių rodymui." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8713,7 +8725,7 @@ msgstr "Nėra įvykių rodymui." msgid "The %s table doesn't exist!" msgstr "Lentelė %s neegzistuoja!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8759,91 +8771,91 @@ msgstr "Atributai" msgid "Extra" msgstr "Papildomai" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Sukurti naują puslapį" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Puslapio vardas" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatinis išdėstymas paremtas" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Pasirinkite puslapį redagavimui" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Pasirinkite puslapį" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Pasirinkite lenteles" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Stulpelių vardai" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Rodyti sąryšių schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Pasirinkti eksportavimo sąryšinį tipą" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Rodyti tinklelį" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Rodyti spalvą" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Rodyti lentelių dydžius" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "rodyti visas lenteles vienodo pločio?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Duomenų žodynas" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Rodyti tik raktus" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Peizažinis" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portretinis" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientacija" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Lapo dydis" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8851,7 +8863,7 @@ msgstr "" "Šis puslapis turi nuorodų į lenteles, kurios jau neegzistuoja. Ar norite " "pašalinti šias nuorodas?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "įjungti scratchboard" @@ -9154,7 +9166,7 @@ msgstr "Vartotojai turintys priėjimą prie „%s“" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Naudotojas" @@ -9296,8 +9308,8 @@ msgstr "Vartotojų peržiūra" 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ų " @@ -9357,11 +9369,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -9456,7 +9468,7 @@ msgstr "" "Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " "visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" @@ -9469,12 +9481,12 @@ msgstr "Sekimas yra aktyvus." msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Rodinys %s buvo panaikintas" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" @@ -9502,14 +9514,14 @@ msgid "Column %s has been dropped" msgstr "Stulpelis %s panaikintas" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Pirminis" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeksas" @@ -9519,7 +9531,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9545,7 +9557,7 @@ msgstr "Peržiūrėti sąryšius" msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." @@ -9553,7 +9565,7 @@ msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." msgid "Add column" msgstr "Pridėti stulpelį" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Pridėti %s stulpelį(-ius)" @@ -9576,15 +9588,15 @@ msgstr "Po %s" msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliams" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Eilučių statistika" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "pastovus" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinaminis" @@ -9592,15 +9604,15 @@ msgstr "dinaminis" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Eilutės ilgis" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Eilutės dydis" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9648,15 +9660,15 @@ msgstr "Pridėti SPATIAL indeksą" msgid "Add FULLTEXT index" msgstr "Pridėti FULLTEXT indeksą" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informacija" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Vietos naudojimas" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektyvus" @@ -9693,7 +9705,7 @@ msgstr "" msgid "Move column" msgstr "Pašalinti stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9702,11 +9714,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:145 msgid "Transformation options" msgstr "Transformacijos nustatymai" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9719,34 +9731,34 @@ msgstr "" "(\"'\"), naudokite viršutinį vertikalų pasvirą brūkšnį prieš šiuos simbolius " "(pvz: '\\\\xyz' ar 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM arba SET duomenys per ilgi?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Padidinti redagavimo erdvę" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Nėra" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Kaip nurodyta:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "SKAIDINIO (PARTITION) apibrėžimas" @@ -9942,7 +9954,7 @@ msgstr "" "Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų " "problemų." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nėra duomenų bazių" @@ -10230,29 +10242,29 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Failai" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Logo pavadinimas" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Padėtis" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Pirminė padėtis" @@ -10260,7 +10272,7 @@ msgstr "Pirminė padėtis" msgid "Character Sets and Collations" msgstr "Simbolių rinkiniai ir Palyginimai" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10269,24 +10281,24 @@ msgstr[0] "Sėkmingai pašalintos %s duomenų bazės." msgstr[1] "Sėkmingai pašalintos %s duomenų bazės." msgstr[2] "Sėkmingai pašalintos %s duomenų bazės." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Duomenų bazių statistika" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Pagrindinio serverio replikavimas" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Pavaldžiojo serverio replikavimas" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Leisti statistiką" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10358,42 +10370,42 @@ msgstr "Teisės sėkmingai perkrautos." msgid "Unknown error" msgstr "Nežinoma klaida" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Nepavyko prisijungti prie pagrindinio (master) serverio %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepavyko perskaityti pagrindinio (master) serverio žurnalo (log). Galima " "privilegijų problema pagrindiniame serveryje." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Nepavyko pakeisti pagrindinio (master) serverio" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Pagrindinis (master) serveris sėkmingai pakeistas į %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Rodyti prisijungusius pavaldinius" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10402,11 +10414,11 @@ msgstr "" "Šis serveris nėra sukonfigūruotas kaip pagrindinio serverio dauginimo " "procesas. Ar Jūs norėtumėte sukonfigūruoti jį?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Pagrindinio serverio nustatymai" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10420,19 +10432,19 @@ msgstr "" "arba Jūs galite pasirinkti ignoruoti visas duomenų bazes ir pasirinkti " "kažkurias duomenų bazes dauginimui. Prašome pasirinkti režimą:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Padauginti visas duomenų bazes; Ignoruoti:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignoruoti visas duomenų bazes; Padauginti:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Prašome pasirinkti duomenų bazes:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10440,7 +10452,7 @@ msgstr "" "Dabar įdėkite sekančias eilutes į [mysqld] skyrelio pabaigą faile my.cnf ir " "po to prašome iš naujo paleiskite MySQL serverį." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10450,84 +10462,84 @@ msgstr "" "to turėtumėte pamatyti informacinę žinutę, kad šis serveris yra " "sukonfigūruotas kaip pagrindinis (master)." -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Pavaldžioji (slave) SQL gija neveikia!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Pavaldžioji (slave) IO gija neveikia!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serveris yra sukonfigūruotas kaip pavaldusis (slave) dauginimo (replication) " "procese. Ar norėtume:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sinchronizuoti duomenų bazes su pagrindiniu serveriu" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Valdyti pavaldinį:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Pilnas paleidimas" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Pilnas išjungimas" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Pradėti tik SQL giją" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Sustabdyti tik SQL giją" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Pradėti tik IO giją" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Sustabdyti tik IO giją" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Klaidų valdymas:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio " "ir jam pavaldžių serverių!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Praleisti šią klaidą" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Praleisti sekančius" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "klaidos." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10536,158 +10548,158 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Užklausų saugykla" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Gijos" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Laikini duomenys" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Užlaikyti įterpimai" -#: server_status.php:628 +#: server_status.php:627 #, fuzzy msgid "Key cache" msgstr "Užklausų saugykla" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Rikiavimas" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Rodyti pavaldinio būklę" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Veikimo informacija" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Visi būsenos kintamieji" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Eilučių skaičius:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Atnaujinimo dažnis: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtrai" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Turintys žodį:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtruoti pagal kategoriją..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Rodyti nesuformatuotas reikšmes" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Susijusios nuorodos:" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query analyzer" msgid "Run analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Įvadas" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10695,33 +10707,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Parametrai" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10729,19 +10741,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10749,71 +10761,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Gauta" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Siųsta" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komanda" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10821,78 +10833,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10900,7 +10912,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10908,42 +10920,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Skaičius užklausų, kad atnaujinti eilutę lentelėje." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Skaičius užklausų, kad įtraukti eilutę lentelėje." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10951,33 +10963,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10986,244 +10998,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Įkelto failo formatas" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11231,99 +11243,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11331,18 +11343,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11350,63 +11362,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sekimas yra neaktyvus." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Paleisti Monitor" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instrukcijos/Diegimas" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Pridėti diagramą" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Monitor instrukcijos" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11415,7 +11427,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11423,18 +11435,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11442,11 +11454,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11454,81 +11466,81 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Pašalinti diagramą" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Būsenos kintamasis(ieji)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Pasirinkite eiles:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "arba įveskite kintamojo vardą:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Pridėti šią eilę" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Eilės diagramoje:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Registruoti statistiką" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Pasirinktas laiko tarpas:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11537,7 +11549,7 @@ msgstr[0] "Sekundė" msgstr[1] "Sekundės" msgstr[2] "Sekundžių" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11657,19 +11669,19 @@ msgstr "" "Paskirta duomenų bazė bus pilnai susinchronizuota su pirmine duomenų baze. " "Pirminė duomenų bazė išliks nepakeista." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Serverio kintamieji ir nustatymai" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sesijos reikšmė" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globali reikšmė" @@ -12011,42 +12023,42 @@ msgstr "" msgid "Wrong data" msgstr "Nėra duomenų" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL rezultatas" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Sugeneravo" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Nuorodos Antraštė" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12194,16 +12206,16 @@ msgstr "Redagavimo režimas" msgid "Index name:" msgstr "Indekso vardas :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indekso tipas :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Įterpti indeksui papildomus  %s stulpelį(ius)" @@ -12368,41 +12380,41 @@ msgstr "Eksportuoti kaip %s" msgid "Show versions" msgstr "Rodyti versijas" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Keisti nustatymus %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktyvuoti dabar" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Sukurti versiją" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Sukurti versiją" @@ -12774,8 +12786,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12908,8 +12920,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/lv.po b/po/lv.po index 90434305b5..635e6d3159 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:41+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian \n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " "2);\n" "X-Generator: Weblate 1.2\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Lapas numurs:" @@ -41,36 +41,36 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Meklēt" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Meklēt" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Aiziet!" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Atslēgas nosaukums" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Apraksts" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Lietot šo vērtību" @@ -119,18 +119,18 @@ msgstr "Datubāze %s tika izdzēsta." msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,7 +138,7 @@ msgstr "Komentārs tabulai" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -146,12 +146,12 @@ msgstr "Komentārs tabulai" msgid "Column" msgstr "Kolonnu nosaukumi" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Kolonnu nosaukumi" msgid "Type" msgstr "Tips" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Tips" msgid "Null" msgstr "Nulle" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Nulle" msgid "Default" msgstr "Noklusēts" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Noklusēts" msgid "Links to" msgstr "Linki uz" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Linki uz" msgid "Comments" msgstr "Komentāri" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Komentāri" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nē" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Nē" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Jā" @@ -276,35 +276,35 @@ msgid "View dump (schema) of database" msgstr "Apskatīt datubāzes dampu (shēmu)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Iezīmēt visu" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -316,12 +316,12 @@ 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_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -331,14 +331,14 @@ msgstr "Tabula" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rindas" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Izmērs" @@ -351,7 +351,7 @@ msgstr "lietošanā" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Izveidošana" @@ -359,7 +359,7 @@ msgstr "Izveidošana" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Pēdējā atjaunošana" @@ -367,7 +367,7 @@ msgstr "Pēdējā atjaunošana" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Pēdējā pārbaude" @@ -383,7 +383,7 @@ msgstr[1] "%s tabula(s)" msgid "You have to choose at least one column to display" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -418,9 +418,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Datubāze" @@ -439,69 +439,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Statuss" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Darbība" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Rādīt" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Likvidēt" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Persiešu" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Datubāze" @@ -521,12 +521,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Pievienot jaunu lauku" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -539,7 +539,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." @@ -549,171 +549,171 @@ msgstr "Damps tika saglabāts failā %s." msgid "Invalid export type" msgstr "Eksporta veids" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Pievienot jaunu lauku" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Rindas atdalītas ar" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Pievienot %s lauku(s)" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Ieraksts tika dzēsts." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Nevar nolasīt failu" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts" @@ -728,7 +728,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." @@ -738,7 +738,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta." msgid "Do you really want to execute \"%s\"?" msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -788,7 +788,7 @@ msgstr "Pievienot jaunu lauku" msgid "Edit Index" msgstr "Indekss" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -846,26 +846,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Labot" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Servera izvēle" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL vaicājums" @@ -876,24 +876,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -915,7 +915,7 @@ msgstr "Servera izvēle" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesi" @@ -935,7 +935,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Rindas statistika" @@ -981,13 +981,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1045,32 +1045,32 @@ msgstr "" msgid "Bytes received" msgstr "Saņemts" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Konekcijas" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "baiti" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1086,11 +1086,11 @@ msgstr "%s tabula(s)" msgid "Questions" msgstr "Persiešu" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1115,12 +1115,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nav" @@ -1220,7 +1220,7 @@ msgstr "Galvenās relāciju īpašības" msgid "Current settings" msgstr "Galvenās relāciju īpašības" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1308,7 +1308,7 @@ msgstr "Izskaidrot SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Laiks" @@ -1418,8 +1418,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" @@ -1673,12 +1673,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Saglabāt" @@ -1744,8 +1744,8 @@ msgstr "SQL rezultāts" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorēt" @@ -1854,7 +1854,7 @@ msgstr "Parādu rindas" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" @@ -1979,27 +1979,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2007,37 +2007,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dec" @@ -2086,32 +2086,32 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "S" @@ -2244,16 +2244,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "sekundē" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minūtē" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "stundā" @@ -2270,7 +2270,7 @@ msgstr "Maksimālais izmērs: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentācija" @@ -2293,14 +2293,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Kļūda" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL vaicājums" @@ -2318,85 +2318,85 @@ msgstr "SQL vaicājums" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Izpildīt vaicājumu" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Atjaunot" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Pārbaudīt SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sv" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Pievienot jaunu lauku" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2404,28 +2404,28 @@ msgctxt "First page" msgid "Begin" msgstr "Sākums" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Iepriekšējie" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Nākamie" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2433,106 +2433,106 @@ msgctxt "Last page" msgid "End" msgstr "Beigas" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktūra" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Pievienot" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Apskatīt" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Darbības" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Iztukšot" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Drukāt" @@ -2549,102 +2549,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Augošā secībā" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Dilstošā secībā" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Kārtošana" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kritērijs" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Pievienot/Dzēst ierakstu" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Atjaunot vaicājumu" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Lietot tabulas" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Vai" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Un" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ielikt" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Dzēst" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Labot" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "kaut viens no vārdiem" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "visi vārdi" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "precīza frāze" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kā regulārā izteiksme" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Meklēšanas rezultāti \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2652,7 +2652,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Kopumā: %s rezultāti" msgstr[1] "Kopumā: %s rezultāti" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2660,49 +2660,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Dzēst" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Meklēt datubāzē" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Atrast:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Vārdi ir atdalīti ar tukšumu (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tabulā(s):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2758,8 +2758,8 @@ msgstr "Izpildīt iegrāmatoto vaicājumu" msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2846,7 +2846,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Nogalināt" @@ -2863,8 +2863,8 @@ msgstr "vaicājumā" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2875,7 +2875,7 @@ msgstr "Parādu rindas" msgid "total" msgstr "kopā" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" @@ -2886,7 +2886,7 @@ msgstr "Vaicājums ilga %01.4f s" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Ar iezīmēto:" @@ -2896,8 +2896,8 @@ msgstr "Ar iezīmēto:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Iezīmēt visu" @@ -2938,52 +2938,52 @@ msgstr "Links nav atrasts" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 #, 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2992,69 +2992,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nav definēti indeksi!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Izkārtojumi" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Komentāri" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primārā atslēga tika izdzēsta" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indekss %s tika izdzēsts" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3063,12 +3063,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Datubāzes" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Serveris" @@ -3138,19 +3138,19 @@ msgstr "Lietotājs" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binārais log-fails" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 #, fuzzy msgid "Replication" msgstr "Relācijas" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Mainīgie" @@ -3285,8 +3285,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3296,11 +3296,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operators" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vērtība" @@ -3310,67 +3310,67 @@ msgstr "Vērtība" msgid "Table Search" msgstr "Meklēt" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Pievienot" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izvēlieties laukus (kaut vienu):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Rindu skaits vienā lapā" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Attēlošanas secība:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL vaicājums" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3445,14 +3445,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3703,7 +3703,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabulas" @@ -3717,12 +3717,12 @@ msgstr "Tabulas" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Pārtēriņš" @@ -3834,7 +3834,7 @@ msgstr "" msgid "Closed" msgstr "Neaizvērtas pēdiņas" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3983,22 +3983,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Atcelt" @@ -4276,7 +4276,7 @@ msgstr "Tabulas kodējums:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formats" @@ -4400,7 +4400,7 @@ msgstr "Etiķetes atslēga" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME tips" @@ -4441,7 +4441,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Lietot apostrofa simbolu [`] tabulu un lauku nosaukumiem" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5948,10 +5948,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6206,54 +6206,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveris neatbild" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Mainīt paroli" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nav paroles" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Atkārtojiet" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Paroles jaukšana" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6409,8 +6417,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6498,71 +6506,71 @@ msgstr "Servera versija" msgid "authored on %1$s by %2$s" msgstr "Servera versija" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Nevar pieslēgties MySQL serverim" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Nav datubāzu" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Nav datubāzu" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6642,72 +6650,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB statuss" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "Tabula %s tika atsvaidzināta" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6898,8 +6906,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6916,128 +6924,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binārais" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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ā" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7091,7 +7099,7 @@ msgstr "" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7385,7 +7393,7 @@ msgstr "Tabulas opcijas" msgid "Rename table to" msgstr "Pārsaukt tabulu uz" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7509,8 +7517,8 @@ msgstr "Laipni lūgti %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7585,21 +7593,21 @@ msgstr "Kļūdains lietotājvārds/parole. Pieeja aizliegta." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7767,20 +7775,21 @@ msgstr "Pieejamie MIME tipi" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Hosts" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Izveidošanas laiks" @@ -8024,7 +8033,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8285,7 +8294,7 @@ msgstr "PDF failu izveide" msgid "Displaying Column Comments" msgstr "Rādu kolonnu komentārus" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" @@ -8352,7 +8361,7 @@ msgstr "Neiezīmēt neko" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8363,8 +8372,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8385,31 +8394,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Mainīgais" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Servera ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Jebkurš lietotājs" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8418,34 +8427,34 @@ msgstr "Jebkurš lietotājs" msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8510,7 +8519,7 @@ msgstr "" msgid "Event name" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Notikuma tips" @@ -8897,7 +8906,7 @@ msgstr "Tabulas nav atrastas šajā datubāzē." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8907,7 +8916,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Tabula \"%s\" neeksistē!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8954,101 +8963,101 @@ msgstr "Atribūti" msgid "Extra" msgstr "Ekstras" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Izveidot jaunu lapu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automātiskais izvietojums" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Izvēlieties lapu redigēšanai" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Iezīmēt visu" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Izvēlieties tabulas" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolonnu nosaukumi" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relāciju shēma" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Rādīt režģi" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Rādīt krāsas" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Rādit tabulu izmērus" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "rādīt visas tabulas vienadā platumā?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Datu vārdnīca" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Ainava" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrets" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Izveidošana" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papīra izmērs" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9056,7 +9065,7 @@ msgstr "" "Tekošajā lapā ir atsauces uz tabulām, kas vairs neeksistē. Vai Jūs gribat " "dzēst šīs atsauces?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "parādīt/noslēpt piezīmju tafeli" @@ -9368,7 +9377,7 @@ msgstr "Lietotāji, kam ir pieja datubāzei "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Lietotājs" @@ -9512,13 +9521,13 @@ msgstr "Lietotāju pārskats" 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." #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9579,11 +9588,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -9679,7 +9688,7 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" @@ -9692,12 +9701,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" @@ -9728,14 +9737,14 @@ msgid "Column %s has been dropped" msgstr "Tabula %s tika izdzēsta" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primārā" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indekss" @@ -9745,7 +9754,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Pilni teksti" @@ -9773,7 +9782,7 @@ msgstr "Relāciju pārskats" msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9785,7 +9794,7 @@ msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" msgid "Add column" msgstr "Pievienot %s lauku(s)" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9810,15 +9819,15 @@ msgstr "Pēc %s" msgid "Create an index on  %s columns" msgstr "Izveidot indeksu uz %s laukiem" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Rindas statistika" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamisks" @@ -9826,15 +9835,15 @@ msgstr "dinamisks" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Rindas garums" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Rindas izmērs" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9887,15 +9896,15 @@ msgstr "Pievienot jaunu lauku" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informācija" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Diska vietas lietošana" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektīvs" @@ -9936,7 +9945,7 @@ msgstr "" msgid "Move column" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9945,11 +9954,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:145 msgid "Transformation options" msgstr "Transformācijas opcijas" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9961,36 +9970,36 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nav" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Pēc %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10195,7 +10204,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nav datubāzu" @@ -10509,30 +10518,30 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Lauki" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Log-faila nosaukums" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozīcija" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Oriģinālā pozīcija" @@ -10540,7 +10549,7 @@ msgstr "Oriģinālā pozīcija" msgid "Character Sets and Collations" msgstr "Rakstzīmju kodējumi un izkārtojumi" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10548,24 +10557,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datubāzes tika veiksmīgi dzēstas." msgstr[1] "%s datubāzes tika veiksmīgi dzēstas." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Datubāzu statistika" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Ieslēgt statistiku" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10638,50 +10647,50 @@ msgstr "Privilēģijas tika veiksmīgi pārlādētas." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10690,123 +10699,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Lūdzu izvēlieties datubāzi" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Pilni teksti" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tikai struktūra" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tikai struktūra" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10814,155 +10823,155 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Vaicājuma tips" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Lietot aizturētos INSERT" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Rādīt tabulas" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Izpildes laika informācija" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Rindu skaits vienā lapā" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Atjaunot" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemainīt paroli" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Rādīt tabulas" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Rādīt tabulas" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relācijas" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vaicājuma tips" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10970,118 +10979,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Parametrs" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Šis MySQL serveris strādā %s. Tas tika palaists %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Saņemts" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komanda" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11089,78 +11098,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11168,7 +11177,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11176,42 +11185,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11219,33 +11228,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11254,243 +11263,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Tabulas kodējums:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11498,99 +11507,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11598,18 +11607,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11617,69 +11626,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vaicājuma tips" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "S" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Pievienot jaunu lauku" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11688,7 +11697,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11696,18 +11705,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11715,11 +11724,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11727,90 +11736,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pārsaukt datubāzi par" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izvēlieties tabulas" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Pievienot jaunu lietotāju" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL vaicājums" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Rindas statistika" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Iezīmēt visu" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vaicājuma tips" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11818,7 +11827,7 @@ msgid_plural "%d seconds" msgstr[0] "sekundē" msgstr[1] "sekundē" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11938,19 +11947,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Servera mainīgie un konfigurācija" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sesijas vērtība" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globālā vērtība" @@ -12242,44 +12251,44 @@ msgstr "" msgid "Wrong data" msgstr "Nav datubāzu" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL rezultāts" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Uzģenerēja" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Nosaukums" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12435,18 +12444,18 @@ msgstr "Pievienot jaunu lauku" msgid "Index name:" msgstr "Indeksa nosaukums :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indeksa tips :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Pievienot indeksam  %s kolonn(u/as)" @@ -12616,38 +12625,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Servera versija" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Servera versija" @@ -13008,8 +13017,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13137,8 +13146,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/mk.po b/po/mk.po index a683ca0aa7..d8a1de398d 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: macedonian_cyrillic \n" -"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Број на страници:" @@ -39,36 +39,36 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Пребарување" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Пребарување" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Име на клуч" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Користи ја оваа вредност" @@ -117,18 +117,18 @@ msgstr "Базата на податоци %1$s е креирана" msgid "Database comment: " msgstr "Коментар на базата на податоци: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,7 +136,7 @@ msgstr "Коментар на табелата" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -144,12 +144,12 @@ msgstr "Коментар на табелата" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Имиња на колони" msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "Default" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Default" msgid "Links to" msgstr "Врски кон" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Врски кон" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "избери се" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ништо" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -314,12 +314,12 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Табела" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Записи" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Големина" @@ -349,7 +349,7 @@ msgstr "се користи" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Направено" @@ -357,7 +357,7 @@ msgstr "Направено" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Последна измена" @@ -365,7 +365,7 @@ msgstr "Последна измена" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Последна проверка" @@ -381,7 +381,7 @@ msgstr[1] "%s табела" msgid "You have to choose at least one column to display" msgstr "Морате да изберете барем една колона за приказ" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -416,9 +416,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "База на податоци" @@ -436,69 +436,69 @@ msgstr "Ажурирано" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Статус" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Акција" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Прикажи" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Избришете го податоците за тракирање од табелава" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Бриши" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Персиски" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "База на податоци" @@ -519,12 +519,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Додади ново поле" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -537,7 +537,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." @@ -547,171 +547,171 @@ msgstr "Содржината на базата на податоци е сочу msgid "Invalid export type" msgstr "Тип на извоз" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додади ново поле" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додади нов корисник" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додади нов корисник" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додади %s полиња" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Додади нов корисник" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Вашиот SQL упит успешно е извршен" @@ -725,7 +725,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -735,7 +735,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена." msgid "Do you really want to execute \"%s\"?" msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -785,7 +785,7 @@ msgstr "Додади ново поле" msgid "Edit Index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -843,26 +843,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор на сервер" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -873,24 +873,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -912,7 +912,7 @@ msgstr "Избор на сервер" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 #, fuzzy msgid "Processes" msgstr "Листа на процеси" @@ -933,7 +933,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Статистики за записите" @@ -979,13 +979,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1047,32 +1047,32 @@ msgstr "" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Конекции" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "бајти" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1088,11 +1088,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персиски" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1117,12 +1117,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "нема" @@ -1222,7 +1222,7 @@ msgstr "Општи особини на релациите" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1312,7 +1312,7 @@ msgstr "Објасни SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Време" @@ -1422,8 +1422,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" @@ -1676,12 +1676,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Сочувај" @@ -1747,8 +1747,8 @@ msgstr "SQL резултат" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Игнорирај" @@ -1857,7 +1857,7 @@ msgstr "Приказ на записи од " msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Генерирај" @@ -1981,27 +1981,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2009,37 +2009,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "дек" @@ -2088,32 +2088,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Саб" @@ -2246,16 +2246,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "во секунда" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "во минута" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "на час" @@ -2272,7 +2272,7 @@ msgstr "Максимална големина: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документација" @@ -2295,14 +2295,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Грешка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL упит" @@ -2320,87 +2320,87 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Изврши SQL" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Освежи" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутини" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2408,28 +2408,28 @@ msgctxt "First page" msgid "Begin" msgstr "Почеток" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Следен" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2437,106 +2437,106 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Нов запис" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Преглед" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операции" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Испразни" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Печати" @@ -2553,102 +2553,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Растечки редослед" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Опаѓачки редослед" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Подредуваање" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критериум" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додади/избриши поле за критериум" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додади/избриши колона" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ажурирај" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Користи табели" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "или" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "и" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Промени" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "барем еден од зборовите" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "сите зборови" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "точен израз" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "како регуларен израз" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати од пребарувањето за \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2656,7 +2656,7 @@ msgid_plural "Total: %s matches" msgstr[0] "вкупно: %s погодоци" msgstr[1] "вкупно: %s погодоци" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2664,49 +2664,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "избриши" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Пребарување низ базата на податоци" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Барај:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Зборовите се одвојуваат со празно место (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "во табела(и):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2763,8 +2763,8 @@ msgstr "Изврши запамтен упит" msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2851,7 +2851,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Прекини" @@ -2870,8 +2870,8 @@ msgstr "во упитот" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2882,7 +2882,7 @@ msgstr "Приказ на записи од" msgid "total" msgstr "вкупно" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" @@ -2893,7 +2893,7 @@ msgstr "време на извршување на упитот %01.4f секун #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Обележаното:" @@ -2903,8 +2903,8 @@ msgstr "Обележаното:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "обележи ги сите" @@ -2945,41 +2945,41 @@ msgstr "Врската не е пронајдена" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." @@ -2988,11 +2988,11 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3001,69 +3001,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "вашиот веб прелистувач треба да допушти cookies" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Клучот не е дефиниран!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Клучеви" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Подредување" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Коментари" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Примарниот клуч е избришан" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Клучот %s е избиршан" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3072,12 +3072,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "База на податоци" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" @@ -3147,19 +3147,19 @@ msgstr "Корисник" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Бинарен дневник" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 #, fuzzy msgid "Replication" msgstr "Релации" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Променливи" @@ -3294,8 +3294,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функција" @@ -3305,11 +3305,11 @@ msgstr "Функција" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Вредност" @@ -3319,67 +3319,67 @@ msgstr "Вредност" msgid "Table Search" msgstr "Пребарување" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нов запис" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Избери полиња (најмалку едно)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Број на записи на страница" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Редослед на приказ:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL упит" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3454,14 +3454,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3712,7 +3712,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Табели" @@ -3726,12 +3726,12 @@ msgstr "Табели" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Податоци" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Пречекорување" @@ -3844,7 +3844,7 @@ msgstr "" msgid "Closed" msgstr "Наводникот не е затворен" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3993,22 +3993,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Поништи" @@ -4289,7 +4289,7 @@ msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4413,7 +4413,7 @@ msgstr "Ознака на клучот" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-типови" @@ -4454,7 +4454,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Името на полето стави го во '" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5968,10 +5968,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6226,7 +6226,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6234,48 +6234,56 @@ msgid "" "configured)." msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Серверот не одговара" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Промена на лозинка" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Нема лозинка" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Повтори внес" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Хеширање на лозинката" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6431,8 +6439,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6520,71 +6528,71 @@ msgstr "Верзија на серверот" msgid "authored on %1$s by %2$s" msgstr "Верзија на серверот" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Не можам да се пријавам на MySQL серверот" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Базата на податоци не постои" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Базата на податоци не постои" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6668,71 +6676,71 @@ msgstr "" "Големина на меморискиот бафер кој го користи InnoDB за кеширање на податоци " "и за индексите на своите табели." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Искористеност на баферот" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "страница" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Слободни страници" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Валкани страници" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Страници со податоци" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Страници кои треба да бидат ускладени" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Зафатени страници" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Заглавени страници" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Активност на баферот" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Барања за читање" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Барање за упис" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Промашувања при читање" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Промашувања при читање во %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Чекања на упис во %" @@ -6940,8 +6948,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6958,66 +6966,66 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Бинарен" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" @@ -7025,63 +7033,63 @@ msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7131,7 +7139,7 @@ msgstr "" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7423,7 +7431,7 @@ msgstr "Опции на табелата" msgid "Rename table to" msgstr "Промени го името на табелата во" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Вид на складиште" @@ -7547,8 +7555,8 @@ msgstr "%s Добредојдовте" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7624,21 +7632,21 @@ msgstr "Погрешно корисничко име/лозинка. Прист msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7806,20 +7814,21 @@ msgstr "Достапни MIME-типови" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Време на креирање" @@ -8064,7 +8073,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8341,7 +8350,7 @@ msgstr "Креирање на PDF" msgid "Displaying Column Comments" msgstr "Прикажувам коментари на колоните" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" @@ -8409,7 +8418,7 @@ msgstr "ниедно" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8420,8 +8429,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8442,31 +8451,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Променлива" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID на серверот" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Било кој корисник" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8475,34 +8484,34 @@ msgstr "Било кој корисник" msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Генерирање на лозинка" @@ -8566,7 +8575,7 @@ msgstr "" msgid "Event name" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Вид на настан" @@ -8958,7 +8967,7 @@ msgstr "Табелите не се пронајдени во базата на msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8968,7 +8977,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Табелата \"%s\" не постои!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9015,101 +9024,101 @@ msgstr "Атрибути" msgid "Extra" msgstr "Дополнително" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Направи нова страница" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматски распоред" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Внатрешни релации" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Изберете страница која менувате" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "избери се" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Избери табели" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Имиња на колони" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона шема" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Прикажи мрежа" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Прикажи боја" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Прикажи ги димензиите на табелите" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Приказ на сите табели со иста ширина?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Речник на податоци" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Легнато" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Вертикално" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Направено" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Димензија на хартијата" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9117,7 +9126,7 @@ msgstr "" "Актуелната страница има референци кон табели кои не постојат. Сакате ли да " "ги избиршете тие референци?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Вклучи/исклучи работна табела" @@ -9433,7 +9442,7 @@ msgstr "Корисници кои имаат пристап "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Корисник" @@ -9577,8 +9586,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 " "табелата на привилегии. Содржината на оваа табела табела може да се " @@ -9645,11 +9654,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -9744,7 +9753,7 @@ msgstr "" "SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " "неопходните PHP екстензии опишане во %sдокументацијата%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" @@ -9757,12 +9766,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" @@ -9793,14 +9802,14 @@ msgid "Column %s has been dropped" msgstr "Табелата %s е избришана" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Примарен" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Клуч" @@ -9810,7 +9819,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Текст клуч" @@ -9838,7 +9847,7 @@ msgstr "Релационен поглед" msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9850,7 +9859,7 @@ msgstr "Морате да изберете барем една колона за msgid "Add column" msgstr "Додади %s полиња" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9875,15 +9884,15 @@ msgstr "после полето %s" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статистики за записите" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамички" @@ -9891,15 +9900,15 @@ msgstr "динамички" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Должина на запис" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Големина на запис" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9952,15 +9961,15 @@ msgstr "Додади ново поле" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Информации" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Големина" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Ефективни" @@ -10000,7 +10009,7 @@ msgstr "" msgid "Move column" msgstr "Додади/избриши колона" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10009,11 +10018,11 @@ msgstr "" "За листа на достапни опции на транформациите и нивните MIME-тип " "трансформации, кликнете на %sопис на трансформацијата%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опции на трансформацијата" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10025,36 +10034,36 @@ msgstr "" "или апостроф (\"'\") во тие вредности, ставете обратна коса црта пред нив " "(пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "после полето %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10265,7 +10274,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Базата на податоци не постои" @@ -10579,30 +10588,30 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Полиња" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Назив на дневникот" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Позиција" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Оргинална позиција" @@ -10610,7 +10619,7 @@ msgstr "Оргинална позиција" msgid "Character Sets and Collations" msgstr "Кодни страници и подредување" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10618,24 +10627,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базата на податоци успешно е избришана." msgstr[1] "%s базата на податоци успешно е избришана." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статистика на базата на податоци" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Вклучи статистики" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10708,50 +10717,50 @@ msgstr "Привилегиите се успешно вчитани." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Привилегиите се успешно вчитани." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10760,278 +10769,278 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Изберете база на податоци" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Текст клуч" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Вид на упит" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Користи одложен внес" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Прикажи табели" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Информации за работата" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Број на записи на страница" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Освежи" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да ја менуваш лозинката" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Прикажи табели" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Прикажи табели" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Вид на упит" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Функција" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11039,119 +11048,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Овој MySQL сервер работи %s. Стартуван е на %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Примено" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Пратено" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Наредба" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11159,78 +11168,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11238,7 +11247,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11246,42 +11255,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11289,33 +11298,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11324,243 +11333,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Кодна страна на податотеката:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11568,99 +11577,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11668,18 +11677,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11687,69 +11696,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Вид на упит" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Саб" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додади ново поле" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11758,7 +11767,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11766,18 +11775,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11785,11 +11794,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11797,90 +11806,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Избриши ја базата на податоци." -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Избери табели" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Додади нов корисник" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Статистики за записите" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "избери се" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Вид на упит" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11888,7 +11897,7 @@ msgid_plural "%d seconds" msgstr[0] "во секунда" msgstr[1] "во секунда" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12008,19 +12017,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Серверски променливи и подесувања" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Вредност на сесијата" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобална вредност" @@ -12312,44 +12321,44 @@ msgstr "" msgid "Wrong data" msgstr "Базата на податоци не постои" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Генерирал" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12507,16 +12516,16 @@ msgstr "Додади ново поле" msgid "Index name:" msgstr "Име на клуч :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" може да биде име само на примарниот клуч!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тип на клуч :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Додади во клучот  %s колона(и)" @@ -12686,39 +12695,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Избришете го податоците за тракирање од табелава" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Верзија на серверот" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" @@ -13081,8 +13090,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13211,8 +13220,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ml.po b/po/ml.po index 1e8492b406..40a77400d6 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" -"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "താൾ:" @@ -38,36 +38,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "തിരയൂ" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "തിരയൂ" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "പോകൂ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "കീനാമം" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "വിവരണം" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "ഈ വില ഉപയോഗിക്കൂ" @@ -116,18 +116,18 @@ msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച് msgid "Database comment: " msgstr "വിവരശേഖര അഭിപ്രായം: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,18 +135,18 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "നിര" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -163,11 +163,11 @@ msgstr "നിര" msgid "Type" msgstr "തരം" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -179,9 +179,9 @@ msgstr "തരം" msgid "Null" msgstr "ശൂന്യം" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -194,8 +194,8 @@ msgstr "ശൂന്യം" msgid "Default" msgstr "സ്വതേ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -203,11 +203,11 @@ msgstr "സ്വതേ" msgid "Links to" msgstr "കണ്ണികൾ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -216,12 +216,12 @@ msgstr "കണ്ണികൾ" msgid "Comments" msgstr "അഭിപ്രായങ്ങൾ" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -232,23 +232,23 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "ഇല്ല" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -260,8 +260,8 @@ msgstr "ഇല്ല" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "അതേ" @@ -271,47 +271,47 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരിക്കുക" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് പകർത്തിയിരിക്കുന്നു" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -321,14 +321,14 @@ msgstr "പട്ടിക" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "വരികൾ" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "വലിപ്പം" @@ -341,7 +341,7 @@ msgstr "ഉപയോഗത്തിൽ" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "സൃഷ്‌ടി" @@ -349,7 +349,7 @@ msgstr "സൃഷ്‌ടി" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" @@ -357,7 +357,7 @@ msgstr "അവസാനം നവീകരിച്ചത്" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "അന്തിമ പരിശോധന" @@ -372,7 +372,7 @@ msgstr[1] "%s പട്ടികകൾ" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -404,9 +404,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -424,66 +424,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -499,12 +499,12 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -515,7 +515,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -524,160 +524,160 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -691,7 +691,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -700,7 +700,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -740,7 +740,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -790,24 +790,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -817,24 +817,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "" @@ -854,7 +854,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -872,7 +872,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -914,13 +914,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -972,32 +972,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1013,11 +1013,11 @@ msgstr "%s പട്ടിക" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1038,12 +1038,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1136,7 +1136,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1216,7 +1216,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1308,8 +1308,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1520,12 +1520,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1581,8 +1581,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1681,7 +1681,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1778,63 +1778,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1872,32 +1872,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2010,16 +2010,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2036,7 +2036,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2059,14 +2059,14 @@ msgid "en" msgstr "" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2084,210 +2084,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "അച്ചടിക്കുക" @@ -2304,149 +2304,149 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ആരോഹണം" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "അവരോഹണം" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "തരംതിരിക്കുക" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "മാനദണ്ഡം" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "മാനദണ്ഡ വരികൾ ചേർക്കുക/മായക്കുക" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "അല്ലെനങ്കിൽ" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "ഉം" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "ചേര്‍ക്കുക" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "മായ്ക്കുക" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "തിരുത്തുക" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "" @@ -2491,8 +2491,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2569,7 +2569,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2586,8 +2586,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2598,7 +2598,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2609,7 +2609,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2619,8 +2619,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "" @@ -2658,51 +2658,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2711,66 +2711,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "നിബന്ധന" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2779,12 +2779,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2852,18 +2852,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -2993,8 +2993,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3004,11 +3004,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3016,60 +3016,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3142,14 +3142,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3392,7 +3392,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3406,12 +3406,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3513,7 +3513,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3651,22 +3651,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3933,7 +3933,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4042,7 +4042,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4078,7 +4078,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5514,10 +5514,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5767,52 +5767,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5942,8 +5950,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6017,69 +6025,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6155,71 +6163,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6410,8 +6418,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6426,124 +6434,124 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "വിവരശേഖരം പകർത്തുക" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6587,7 +6595,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6874,7 +6882,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -6988,8 +6996,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7059,21 +7067,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7210,20 +7218,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7448,7 +7457,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7648,7 +7657,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7714,7 +7723,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7725,8 +7734,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7746,31 +7755,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7779,34 +7788,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7865,7 +7874,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8203,7 +8212,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8212,7 +8221,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8258,97 +8267,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8640,7 +8649,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8773,8 +8782,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8831,11 +8840,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8917,7 +8926,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -8930,12 +8939,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -8963,14 +8972,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8980,7 +8989,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9006,7 +9015,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9014,7 +9023,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9037,15 +9046,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9053,15 +9062,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9109,15 +9118,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9144,18 +9153,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9163,33 +9172,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9363,7 +9372,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9638,29 +9647,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9668,7 +9677,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9676,24 +9685,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." msgstr[1] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9761,49 +9770,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9812,255 +9821,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10068,115 +10077,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10184,78 +10193,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10263,7 +10272,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10271,42 +10280,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10314,33 +10323,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10349,242 +10358,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10592,99 +10601,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10692,18 +10701,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10711,61 +10720,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10774,7 +10783,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10782,18 +10791,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10801,11 +10810,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10813,86 +10822,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11008,19 +11017,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11304,42 +11313,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -11474,16 +11483,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11644,38 +11653,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12011,8 +12020,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12130,8 +12139,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/mn.po b/po/mn.po index c8100d679a..7217d76fdd 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian \n" -"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Хуудасны дугаар:" @@ -39,36 +39,36 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Хайх" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Хайх" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Яв" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Тайлбар" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Уг утгыг хэрэглэх" @@ -117,18 +117,18 @@ msgstr "" msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,7 +136,7 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -144,12 +144,12 @@ msgstr "Хүснэгтийн тайлбар" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Баганын нэрс" msgid "Type" msgstr "Төрөл" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Төрөл" msgid "Null" msgstr "Хоосон" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Хоосон" msgid "Default" msgstr "Анхдагч" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Анхдагч" msgid "Links to" msgstr "Холбоос" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Холбоос" msgid "Comments" msgstr "Тайлбар" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Тайлбар" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Үгүй" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Үгүй" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Тийм" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "ӨС-ийн схем харах" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Бүгдийг сонгох" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -314,12 +314,12 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Хүснэгт" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Мөрүүд" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Хэмжээ" @@ -349,7 +349,7 @@ msgstr "хэрэглэгдэж байна" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Үүсгэлт" @@ -357,7 +357,7 @@ msgstr "Үүсгэлт" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Сүүлийн шинэчлэл" @@ -365,7 +365,7 @@ msgstr "Сүүлийн шинэчлэл" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Сүүлийн шалгалт" @@ -381,7 +381,7 @@ msgstr[1] "%s хүснэгт(үүд)" msgid "You have to choose at least one column to display" msgstr "Харуулахын тулд ядаж нэг багана сонго" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -416,9 +416,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "ӨС" @@ -436,66 +436,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Статус" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Үйлдэл" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Харах" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Устгах" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -514,12 +514,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Шинэ талбар нэмэх" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -531,7 +531,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." @@ -542,170 +542,170 @@ msgstr "Асгалт %s файлд хадгалагдсан." msgid "Invalid export type" msgstr "Гаргах" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Шинэ талбар нэмэх" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Шугамыг төгсгөгч" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Тогтмол нэмэх" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "%s талбар(ууд) нэмэх" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Шинэ хэрэглэгч нэмэх" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Тэмдэглэгээ устгагдсан." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Оруулалт амжилттай дууслаа, %d асуудал ажиллав." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Таны SQL-асуулт амжилттай ажиллав" @@ -719,7 +719,7 @@ msgstr "Өмнөх" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." @@ -729,7 +729,7 @@ msgstr "\"ӨС устгах\" нь хаалттай." msgid "Do you really want to execute \"%s\"?" msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -779,7 +779,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Edit Index" msgstr "Дараагийн мөрийг засах" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -838,26 +838,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Засах" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Сервэр сонго" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -869,24 +869,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -908,7 +908,7 @@ msgstr "Сервэр сонго" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процессууд" @@ -928,7 +928,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -980,13 +980,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "кБ" @@ -1048,32 +1048,32 @@ msgstr "" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Холболт" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1090,11 +1090,11 @@ msgstr "%s хүснэгт(үүд)" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1119,12 +1119,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Байхгүй" @@ -1224,7 +1224,7 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1316,7 +1316,7 @@ msgstr "SQL тайлбар" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Цаг" @@ -1427,8 +1427,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" @@ -1689,12 +1689,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Хадгалах" @@ -1762,8 +1762,8 @@ msgstr "Асуудлын үр дүнгийн үйлдэл" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Үл тоох" @@ -1872,7 +1872,7 @@ msgstr "Мөрүүдийг харуулж байна " msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Бий болгох" @@ -1997,27 +1997,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2025,37 +2025,37 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "12р" @@ -2104,32 +2104,32 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Бя" @@ -2263,16 +2263,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "секундэд" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "минутад" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "цагт" @@ -2289,7 +2289,7 @@ msgstr "ХИ хэмжээ: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Баримт" @@ -2312,14 +2312,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Алдаа" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-асуулт" @@ -2337,87 +2337,87 @@ msgstr "SQL-асуулт" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Асуултыг илгээх" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL-ийг батлах" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ня" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Шинэ талбар нэмэх" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2425,28 +2425,28 @@ msgctxt "First page" msgid "Begin" msgstr "Эхлэл" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Өмнөх" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Цааш" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2454,106 +2454,106 @@ msgctxt "Last page" msgid "End" msgstr "Төгс" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Бүтэц" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Оруулах" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Хөтлөх" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Хоосон" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Хэвлэх" @@ -2570,102 +2570,102 @@ msgstr "" msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Өсөхөөр" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Буурахаар" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Эрэмбэлэх" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Хэмжүүр" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Мөр Нэмэх/устгах" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Багана нэмэх/устгах" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Update асуулт" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Хүснэгт хэрэглэх" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Эсвэл" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "БА" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Оруулах" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Устгах" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Өөрчлөх" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "бүх үг" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "яг цав өгүүлбэр" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Хайлтын үр дүн \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2673,7 +2673,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Нийт: %s олдоц(ууд)" msgstr[1] "Нийт: %s олдоц(ууд)" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2681,49 +2681,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Устгах" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Өгөгдлийн санд хайх" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Хайх:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Хүснэгт(үүд) дотор:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2777,8 +2777,8 @@ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2863,7 +2863,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Алах" @@ -2880,8 +2880,8 @@ msgstr "асуултад" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2892,7 +2892,7 @@ msgstr "Мөрүүдийг харуулж байна" msgid "total" msgstr "Нийт" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" @@ -2903,7 +2903,7 @@ msgstr "Асуулт нь %01.4f сек авлаа" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Сонгогдсонтой:" @@ -2913,8 +2913,8 @@ msgstr "Сонгогдсонтой:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Бүгдийг чагтлах" @@ -2956,51 +2956,51 @@ msgstr "Холбоос олдсонгүй" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3009,68 +3009,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Индекс тодорхойлогдоогүй!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Индексүүд" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Жишилт" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Үндсэн түлхүүр устгагдлаа" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s нь устгагдсан" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3079,12 +3079,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Өгөгдлийн сангууд" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервэр" @@ -3154,18 +3154,18 @@ msgstr "Хэрэглэгч" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Хоёртын log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Олшруулалт" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Утгууд" @@ -3306,8 +3306,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функц" @@ -3317,11 +3317,11 @@ msgstr "Функц" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Утга" @@ -3331,68 +3331,68 @@ msgstr "Утга" msgid "Table Search" msgstr "Хайх" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Оруулах" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Талбар сонгох (ядаж нэгийг):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Хуудас дахь мөрийн тоо" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Харуулах эрэмбэ:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "in query" msgid "Additional search criteria" msgstr "асуултад" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3467,14 +3467,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3727,7 +3727,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Хүснэгт" @@ -3741,12 +3741,12 @@ msgstr "Хүснэгт" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Өгөгдөл" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Толгой дээр" @@ -3863,7 +3863,7 @@ msgstr "" msgid "Closed" msgstr "Хаагдаагүй хашилт" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4011,22 +4011,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Да.эхлэх" @@ -4307,7 +4307,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Тогтнол" @@ -4428,7 +4428,7 @@ msgstr "Label key" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-төрөл" @@ -4468,7 +4468,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Хүснэгт ба талбарын нэрийг буруу хашилтаар хаах" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL нийцтэй горим" @@ -5968,10 +5968,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6227,7 +6227,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6235,48 +6235,56 @@ msgid "" "configured)." msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервэрээс хариу алга" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Нууц үг солих" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Нууц үггүй" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Дахин бич" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Нууц үг хувиргах" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6435,12 +6443,12 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6529,77 +6537,77 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "authored on %1$s by %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Оруулсан файлын тогтнол" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL руу нэвтэрч чадсангүй" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" msgstr "ӨС байхгүй" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" msgstr "ӨС байхгүй" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Оруулах файл" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6687,71 +6695,71 @@ msgstr "" "Энэ хүснэгтийн кэш өгөгдөл, индекст хэрэглэх InnoDB санах ойн буфферийн " "хэмжээ." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB байдал" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Буффер Pool Хэрэглээ" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "хуудсууд" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Чөлөөт хуудсууд" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Бохир хуудсууд" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Хуудсуудын агуулсан өгөгдөл" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Хуудсууд зайлагдсан" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Завгүй хуудсууд" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Latched хуудсууд" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Буффер Pool Идэвхжил" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Унших гуйлт" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Бичих гуйлт" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Уншилт алдагдсан" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Бичихээр хүлээх" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Уншилт алдсан нь %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Бичихээр хүлээгдэх нь %" @@ -6955,8 +6963,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6973,130 +6981,130 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "ӨС байхгүй" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "No tables" msgid "Go to table: %s" msgstr "Хүснэгт алга" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Нуух" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Хоёртын" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7150,7 +7158,7 @@ msgstr "" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7445,7 +7453,7 @@ msgstr "Хүснэгтийн сонголтууд" msgid "Rename table to" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" @@ -7567,11 +7575,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7642,21 +7650,21 @@ msgstr "Нэвтрэгч/нууц үг буруу. Хандах боломжгү msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7823,20 +7831,21 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Үүссэн цаг" @@ -8081,7 +8090,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Хүснэгтийн нэр" @@ -8344,7 +8353,7 @@ msgstr "PDF-схемийн үүсгэлт" msgid "Displaying Column Comments" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" @@ -8411,7 +8420,7 @@ msgstr "Бүх чагтыг болих" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8422,8 +8431,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8443,31 +8452,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Хувьсагч" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Дурын хэрэглэгч" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8476,34 +8485,34 @@ msgstr "Дурын хэрэглэгч" msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Нууц үг бий болгох" @@ -8570,7 +8579,7 @@ msgstr "" msgid "Event name" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Хэрэг явдлын төрөл" @@ -8967,7 +8976,7 @@ msgstr "ӨС-д хүснэгт олдсонгүй." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8977,7 +8986,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Хүснэгт \"%s\" байхгүй байна!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9024,101 +9033,101 @@ msgstr "Атрибутууд" msgid "Extra" msgstr "Нэмэлт" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Шинэ хуудас үүсгэх" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автомат байрлал" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Засах Хуудсаа сонго" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Бүгдийг сонгох" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Хүснэгтүүд сонго" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Баганын нэрс" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Хамааралтай схем" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Тор харуулах" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Өнгө харах" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Хүснэгтийн харьцаа харуулах" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "бүх хүснэгтийг ижил өргөнөөр харуулах уу?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Ландшафт" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Дүрслэл" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Үүсгэлт" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Цаасны хэмжээ" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9126,7 +9135,7 @@ msgstr "" "Хүснэгтийн лавлахтай хуудас нь удаан оршихгүй, Та эдгээр лавлахуудыг устгах " "уу?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "toggle scratchboard" @@ -9428,7 +9437,7 @@ msgstr "Хэрэглэгчдийн хандсан нь "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Хэрэглэгч" @@ -9572,8 +9581,8 @@ msgstr "User overview" 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-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -9636,11 +9645,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -9724,7 +9733,7 @@ msgstr "" "SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " "уу, %sбаримтжуулалд%s тодорхойлогдсон." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" @@ -9737,12 +9746,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" @@ -9773,14 +9782,14 @@ msgid "Column %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Үндсэн" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Индекс" @@ -9790,7 +9799,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Бүтэнбичвэр" @@ -9818,7 +9827,7 @@ msgstr "Хамаарал харах" msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9830,7 +9839,7 @@ msgstr "Та багадаа нэг талбар нэм." msgid "Add column" msgstr "%s талбар(ууд) нэмэх" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9855,15 +9864,15 @@ msgstr "%s-ы дараа" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамик" @@ -9871,15 +9880,15 @@ msgstr "динамик" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Мөрийн урт" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Мөрийн хэмжээ" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9933,15 +9942,15 @@ msgstr "Шинэ талбар нэмэх" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Мэдээлэл" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Ашиглалтын зай" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Эффекттэй" @@ -9982,7 +9991,7 @@ msgstr "" msgid "Move column" msgstr "Багана нэмэх/устгах" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9991,11 +10000,11 @@ msgstr "" "Боломжтой өөрчлөлийн сонголтуудын жагсаалт ба тэдгээр MIME-төрлийн " "өөрчлөлүүдийн тулд, %sөөрчлөлийн тайлбар%s -д дарах" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Өөрчлөлийн сонголтууд" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10006,36 +10015,36 @@ msgstr "" "та буруу ташуу зургаас эсвэл дан хашилт тавихыг хүсвэл буруу ташуу зураасыг " "өмнө нь тавина уу. (Ж: '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Байхгүй" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s-ы дараа" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10247,7 +10256,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "ӨС байхгүй" @@ -10562,29 +10571,29 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файлууд" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Log нэр" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Байрлал" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Жинхэнэ байрлал" @@ -10592,7 +10601,7 @@ msgstr "Жинхэнэ байрлал" msgid "Character Sets and Collations" msgstr "Кодлол ба жишилт" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10600,24 +10609,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ӨС амжилттай устгагдлаа." msgstr[1] "%s ӨС амжилттай устгагдлаа." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Өгөгдлийн сангийн статистик" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Нээлттэй статистик" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10688,50 +10697,50 @@ msgstr "Онцгой эрхүүд дахин дуудагдлаа." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10740,275 +10749,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Зөвхөн бүтэц" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Зөвхөн бүтэц" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Баригч" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Асуудлын нөөцлөл" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Thread-үүд" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Завсрын өгөгдөл" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Давталттай оруулалт" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Нэгдэл" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Эрэмбэлж байна" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Хэлэлцээр зохицуулагч" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Дагавар төлвийг харуулах" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Асуудлын утгыг цэвэрлэх" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Ажиллах үеийн мэдээлэл" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Талбаруудын тоо" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Да.дуудах" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Нууц үгийг солихгүй" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Хамаарал" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Асуултын төрөл" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Мэдээлэл" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11016,102 +11025,102 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Энэ MySQL сервэр %s-д ажиллаж байна. Эхэлсэн нь %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Ирсэн" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Команд" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "its the number of simultaneous connections the user may have." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11121,16 +11130,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11142,11 +11151,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11154,7 +11163,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11162,7 +11171,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11170,23 +11179,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11196,7 +11205,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11206,7 +11215,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11214,7 +11223,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11224,7 +11233,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11232,7 +11241,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11244,7 +11253,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11256,35 +11265,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11294,7 +11303,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11306,11 +11315,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11318,7 +11327,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11326,11 +11335,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11338,7 +11347,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11347,244 +11356,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11592,99 +11601,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11692,18 +11701,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11711,69 +11720,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Шинэ талбар нэмэх" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Да.дуудах" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Багана нэмэх/устгах" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "Мэдээлэл" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11782,7 +11791,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11790,18 +11799,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11809,11 +11818,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11821,93 +11830,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Хүснэгтүүд сонго" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Хүснэгтийн буруу нэр" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Мөрийн статистик" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Бүгдийг сонгох" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Асуултын төрөл" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11915,7 +11924,7 @@ msgid_plural "%d seconds" msgstr[0] "секундэд" msgstr[1] "секундэд" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12036,19 +12045,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Сессон утга" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобал утга" @@ -12336,44 +12345,44 @@ msgstr "" msgid "Wrong data" msgstr "ӨС байхгүй" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-үр дүн" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Үүсгэгч" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Хаяг" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12530,17 +12539,17 @@ msgstr "Шинэ талбар нэмэх" msgid "Index name:" msgstr "Индексийн нэр :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" нь үндсэн түлхүүрийн нэр ба зөвхөн байх хэрэгтэй!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Индексийн төрөл :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Индекст нэмэх %s багана(ууд)" @@ -12709,39 +12718,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -13112,8 +13121,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13245,8 +13254,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14217,8 +14226,8 @@ msgstr "ХИ. давхацсан холболтууд" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" -#~ "%s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" +#~ "s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index a3320fe9b8..1eaf831b69 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: malay \n" -"Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Muka Surat:" @@ -36,36 +36,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Cari" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -73,28 +73,28 @@ msgstr "Cari" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Pergi" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Keterangan" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Guna nilai ini" @@ -117,18 +117,18 @@ msgstr "angkalan data %s telah digugurkan." msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,7 +136,7 @@ msgstr "Komen jadual" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -144,12 +144,12 @@ msgstr "Komen jadual" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Nama Kolum" msgid "Type" msgstr "Jenis" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Jenis" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "Asal" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Asal" msgid "Links to" msgstr "Pautan ke" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Pautan ke" msgid "Comments" msgstr "Komen" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Komen" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Tidak" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ya" @@ -274,34 +274,34 @@ msgid "View dump (schema) of database" msgstr "Lihat longgokan (skema) pangkalan data" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Sila pilih pangkalan data" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -313,12 +313,12 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -328,14 +328,14 @@ msgstr "Jadual" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Baris" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Saiz" @@ -348,7 +348,7 @@ msgstr "sedang digunakan" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 #, fuzzy msgid "Creation" msgstr "Cipta" @@ -357,7 +357,7 @@ msgstr "Cipta" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "" @@ -365,7 +365,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Semakan Terakhir" @@ -381,7 +381,7 @@ msgstr[1] "%s jadual" msgid "You have to choose at least one column to display" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -415,9 +415,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Pangkalan Data" @@ -436,69 +436,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Aksi" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Papar" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Gugur" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Operasi" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Struktur sahaja" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Pangkalan Data" @@ -518,12 +518,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Tukarnama jadual ke" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -534,7 +534,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -545,169 +545,169 @@ msgstr "" msgid "Invalid export type" msgstr "Eksport" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Tambah medan baru" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Baris ditamatkan oleh" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Tambah medan baru" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "TandaBuku telah dipadam." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya" @@ -723,7 +723,7 @@ msgstr "" "phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti " "mozilla." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." @@ -733,7 +733,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." msgid "Do you really want to execute \"%s\"?" msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -777,7 +777,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Tambah medan baru" @@ -832,26 +832,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ubah" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pilihan Pelayan" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "kueri-SQL" @@ -862,24 +862,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -901,7 +901,7 @@ msgstr "Pilihan Pelayan" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Proses-proses" @@ -921,7 +921,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statistik Baris" @@ -967,13 +967,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1031,32 +1031,32 @@ msgstr "" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Hubungan" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1072,11 +1072,11 @@ msgstr "%s jadual" msgid "Questions" msgstr "Operasi" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1100,12 +1100,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Tiada" @@ -1205,7 +1205,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" @@ -1292,7 +1292,7 @@ msgstr "Terangkan Kod SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Masa" @@ -1398,8 +1398,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1646,12 +1646,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Simpan" @@ -1717,8 +1717,8 @@ msgstr "Hasil SQL" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Abai" @@ -1826,7 +1826,7 @@ msgstr "Papar baris" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Dijana oleh" @@ -1951,27 +1951,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1979,37 +1979,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dis" @@ -2058,32 +2058,32 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2216,16 +2216,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per jam" @@ -2242,7 +2242,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentasi" @@ -2265,14 +2265,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Ralat" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "kueri-SQL" @@ -2290,83 +2290,83 @@ msgstr "kueri-SQL" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Hantar Kueri" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Mengesahkan SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Aha" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2374,28 +2374,28 @@ msgctxt "First page" msgid "Begin" msgstr "Mula" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Terdahulu" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Berikut" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2403,106 +2403,106 @@ msgctxt "Last page" msgid "End" msgstr "Tamat" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Selit" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Lungsur" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operasi" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Kosong" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Cetak" @@ -2519,102 +2519,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Menurun" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Isih" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Tambah/Padam Baris Kriteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Kemaskini Kueri" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Guna Jadual" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Atau" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Dan" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ubahsuai" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "semua perkataan" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "Frasa tepat" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "sebagai penyataan regular (regexp)" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil carian bagi \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2622,7 +2622,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Jumlah: %s padanan" msgstr[1] "Jumlah: %s padanan" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2630,49 +2630,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Melonggok data bagi jadual" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Padam" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Cari di pangkalan data" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Cari:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Di dalam jadual:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2727,8 +2727,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2814,7 +2814,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Bunuh" @@ -2831,8 +2831,8 @@ msgstr "pada kueri" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2843,7 +2843,7 @@ msgstr "Papar baris" msgid "total" msgstr "jumlah" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2854,7 +2854,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Dengan pilihan:" @@ -2864,8 +2864,8 @@ msgstr "Dengan pilihan:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Tanda Semua" @@ -2906,51 +2906,51 @@ msgstr "Pautan tidak dijumpai" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2959,69 +2959,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Tiada indeks ditafrifkan!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeks" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Komen" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Kekunci utama telah digugurkan" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s telah digugurkan" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3030,12 +3030,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "pangkalan data" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Pelayan" @@ -3105,19 +3105,19 @@ msgstr "Pengguna" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Binari" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Pemboleh-pembolehubah" @@ -3248,8 +3248,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Fungsi" @@ -3260,11 +3260,11 @@ msgstr "Fungsi" msgid "Operator" msgstr "Operasi" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Nilai" @@ -3274,67 +3274,67 @@ msgstr "Nilai" msgid "Table Search" msgstr "Cari" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Selit" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pilih medan (sekurang-kurangnya satu):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Bilangan baris per halaman" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Turutan paparan:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "kueri-SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3409,14 +3409,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3666,7 +3666,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Jadual-jadual" @@ -3680,12 +3680,12 @@ msgstr "Jadual-jadual" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Melebihi" @@ -3796,7 +3796,7 @@ msgstr "" msgid "Closed" msgstr "Tanda quote tidak disertakan" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3945,22 +3945,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Ulangtetap" @@ -4235,7 +4235,7 @@ msgstr "Fail bagi set Aksara:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4354,7 +4354,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4395,7 +4395,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Sertakan nama jadual dan medan dengan backquotes" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5888,10 +5888,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6147,52 +6147,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Ubah Katalaluan" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Tiada Katalaluan" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ulang-taip" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6345,8 +6353,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6432,71 +6440,71 @@ msgstr "Versi Pelayan" msgid "authored on %1$s by %2$s" msgstr "Versi Pelayan" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Tidak boleh log-masuk ke server MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Tiada pangkalan data" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Tiada pangkalan data" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6576,72 +6584,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "Jadual %s telah dibuangkan" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6832,8 +6840,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6849,127 +6857,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7021,7 +7029,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7317,7 +7325,7 @@ msgstr "" msgid "Rename table to" msgstr "Tukarnama jadual ke" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7438,8 +7446,8 @@ msgstr "Selamat Datang ke %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7510,21 +7518,21 @@ msgstr "Salah kata pengenalan/kata laluan. Akses dilarang." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7682,20 +7690,21 @@ msgstr "Paparkan Ciri-ciri" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Hos" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Masa dijana" @@ -7933,7 +7942,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8135,7 +8144,7 @@ msgstr "Ciptaan bagi PDF" msgid "Displaying Column Comments" msgstr "Memaparkan Komen Kolum" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8201,7 +8210,7 @@ msgstr "Nyahtanda Semua" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8212,8 +8221,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8234,32 +8243,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Pembolehubah" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Pelayan" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Sebarang pengguna" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8268,34 +8277,34 @@ msgstr "Sebarang pengguna" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8359,7 +8368,7 @@ msgstr "" msgid "Event name" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Jenis Kueri" @@ -8736,7 +8745,7 @@ msgstr "Tiada jadual dijumpai pada pangkalan data." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8746,7 +8755,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Jadual \"%s\" tidak wujud!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8793,105 +8802,105 @@ msgstr "Atribut" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Cipta Halaman baru" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy msgid "Automatic layout based on" msgstr "Versi Pelayan" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Sila Pilih Laman untuk diubah" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Sila pilih pangkalan data" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Pilih Jadual" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nama Kolum" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema Hubungan" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Papar grid" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Papar warna" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Papar dimensi jadual" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "paparkan semua Jadual dengan kelebaran yang sama?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Kamus Data" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Menegak" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Melintang" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy msgid "Orientation" msgstr "Cipta" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9191,7 +9200,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Pengguna" @@ -9329,8 +9338,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9391,11 +9400,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9491,7 +9500,7 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " "sambungan php seperti yang tercatit di %sdocumentation%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" @@ -9504,12 +9513,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" @@ -9540,14 +9549,14 @@ msgid "Column %s has been dropped" msgstr "Jadual %s telah digugurkan" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Utama" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9557,7 +9566,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tekspenuh" @@ -9584,7 +9593,7 @@ msgstr "Paparan Hubungan" msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9595,7 +9604,7 @@ msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" msgid "Add column" msgstr "Tambah medan baru" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" @@ -9619,15 +9628,15 @@ msgstr "Selepas %s" msgid "Create an index on  %s columns" msgstr "Cipta indeks pada  %s " -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistik Baris" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamik" @@ -9635,15 +9644,15 @@ msgstr "dinamik" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Panjang baris" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Saiz baris" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9693,15 +9702,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Penggunaan ruang" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Berkesan" @@ -9740,18 +9749,18 @@ msgstr "" msgid "Move column" msgstr "Tambah/Padam Kolum Medan" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -9764,36 +9773,36 @@ msgstr "" "backslash (\"\\\") atau single quote (\"'\") didalam nilai tersebut, " "backslashes kan ia (cth '\\\\xyz' or 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Tiada" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Selepas %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9995,7 +10004,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Tiada pangkalan data" @@ -10300,30 +10309,30 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Medan" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10331,7 +10340,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -10339,25 +10348,25 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "angkalan data %s telah digugurkan." msgstr[1] "angkalan data %s telah digugurkan." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 #, fuzzy msgid "Enable Statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10429,50 +10438,50 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "Thread %s was successfully killed." msgid "Master server changed successfully to %s" msgstr "Bebenang %s telah berjaya dimatikan." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10481,276 +10490,276 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Sila pilih pangkalan data" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tekspenuh" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Struktur sahaja" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Struktur sahaja" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Jenis Kueri" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Penyelitan Lanjutan" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Papar jadual" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informasi MasaJana" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Bilangan baris per halaman" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Dijana oleh" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan tukar katalaluan" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Papar jadual" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Papar jadual" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy msgid "Related links:" msgstr "Operasi" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Jenis Kueri" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Fungsi" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10758,117 +10767,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Penyataan" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Pelayan MySQL ini telah berjalan selama %s. Ia dihidupkan pada %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "DiTerima" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Hantar" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Arahan" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10876,78 +10885,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10955,7 +10964,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10963,42 +10972,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11006,33 +11015,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11041,243 +11050,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fail bagi set Aksara:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11285,99 +11294,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11385,18 +11394,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11404,68 +11413,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Jenis Kueri" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sab" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "Tambah medan baru" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11474,7 +11483,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11482,18 +11491,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11501,11 +11510,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11513,89 +11522,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy msgid "Preset chart" msgstr "Tukarnama jadual ke" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Pilih Jadual" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Tambah Pengguna Baru" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "kueri-SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statistik Baris" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Sila pilih pangkalan data" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Jenis Kueri" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11603,7 +11612,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekod" msgstr[1] "Rekod" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11723,19 +11732,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Pembolehubah dan Penetapan Pelayan" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Nilai Sessi" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Nilai Global" @@ -12027,44 +12036,44 @@ msgstr "" msgid "Wrong data" msgstr "Tiada pangkalan data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Dijana oleh" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -12219,16 +12228,16 @@ msgstr "Paparan Cetak" msgid "Index name:" msgstr "Nama indeks :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Jenis indeks :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambah ke indeks  %s kolum" @@ -12395,38 +12404,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versi Pelayan" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" @@ -12782,8 +12791,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12909,8 +12918,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/nb.po b/po/nb.po index 024365ee4a..fff629855a 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-30 14:59+0200\n" "Last-Translator: Stian Berg \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: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sidenummer:" @@ -38,36 +38,36 @@ 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:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Søk" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "Søk" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Utfør" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nøkkel" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Bruk denne verdien" @@ -118,18 +118,18 @@ msgstr "Databasen %1$s har blitt opprettet." msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,18 +137,18 @@ msgstr "Tabellkommentarer" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolonne" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "Kolonne" msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "Type" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "Null" msgid "Default" msgstr "Standard" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "Standard" msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "Linker til" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nei" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "Nei" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -273,33 +273,33 @@ msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Ingen tabeller i databasen." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Velg alle" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %1$s har endret navn til %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s har blitt kopiert til %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -307,12 +307,12 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -322,14 +322,14 @@ msgstr "Tabell" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rader" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Størrelse" @@ -342,7 +342,7 @@ msgstr "i bruk" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Opprettet" @@ -350,7 +350,7 @@ msgstr "Opprettet" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Sist oppdatert" @@ -358,7 +358,7 @@ msgstr "Sist oppdatert" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Sist kontrollert" @@ -373,7 +373,7 @@ msgstr[1] "%s tabeller" msgid "You have to choose at least one column to display" msgstr "Du må velge minst en kolonne for visning" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Bytt til %svisuell bygger%s" @@ -405,9 +405,9 @@ msgstr "Overvåkede tabeller" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Database" @@ -425,66 +425,66 @@ msgstr "Oppdatert" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Handling" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Vis" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slett overvåkningsdata for denne tabellen" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Slett" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Overvåk tabell" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Databaselogg" @@ -500,12 +500,12 @@ msgstr "Valgte eksporteringstype krever lagring til ei fil!" msgid "Bad parameters!" msgstr "Feil parametere!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre fila %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -518,7 +518,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre fila %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." @@ -527,117 +527,124 @@ msgstr "Dump har blitt lagret til fila %s." msgid "Invalid export type" msgstr "Ugyldig eksport-type" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Verdi for kolonnen \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Bruk OpenStreetMaps som baselag" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Peker %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Legg til peker" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Ytre ring" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Indre ring" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Legg til linjestreng" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Legg til en indre ring" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Legg til polygon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Legg til geometri" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Velg \"GeomFromText\" fra kolonnen \"Funksjon\" og lim inn teksten nedenfor " "inn i feltet \"Verdi\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Bokmerket har blitt slettet." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Fila kunne ikke leses" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -646,7 +653,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:400 +#: import.php:404 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 " @@ -656,28 +663,28 @@ msgstr "" "så var filstørrelsen over maksimum størrelse tillatt i din PHP " "konfigurasjon. Se [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsett uten tegnsett konverteringsbibliotek" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er fullført, %d spørringer utført." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -685,7 +692,7 @@ msgstr "" "Skripttidsabrudd passert, hvis du ønsker å fortsette importen kan du " "gjennopplaste fila og importeringen vil fortsette." -#: import.php:513 +#: import.php:517 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." @@ -694,9 +701,9 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Kommandoen/spørringen er utført" @@ -710,7 +717,7 @@ msgstr "Tilbake" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." @@ -719,7 +726,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått." msgid "Do you really want to execute \"%s\"?" msgstr "Vil du virkelig utføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -759,7 +766,7 @@ msgstr "Legg til index" msgid "Edit Index" msgstr "Rediger indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Legg %d kolonne(r) til index" @@ -809,24 +816,24 @@ msgstr "Lukk" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Rediger" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Live trafikk-graf" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Live tilkbl./prosess-graf" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Live spørrings-graf" @@ -836,24 +843,24 @@ msgstr "Statistikkdata" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Annet" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -873,7 +880,7 @@ msgstr "Servertrafikk (i KiB)" msgid "Connections since last refresh" msgstr "Tilkoblinger siden sist oppdatering" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Prosesser" @@ -891,7 +898,7 @@ msgstr "Spørringer siden sist oppdatering" msgid "Questions (executed statements by the server)" msgstr "Spørringer (executed statements av serveren)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Spørringsstatistikk" @@ -938,13 +945,13 @@ msgstr "Systembytte" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -996,32 +1003,32 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "tilkoblinger" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1035,11 +1042,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Spørringer" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Innstillinger" @@ -1060,12 +1067,12 @@ msgid "Please add at least one variable to the series" msgstr "Legg minst én variabel til serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Ingen" @@ -1166,7 +1173,7 @@ msgstr "Endre innstillinger" msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Fremstillings-tittel" @@ -1253,7 +1260,7 @@ msgstr "Forklar utdata" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tid" @@ -1351,8 +1358,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1565,12 +1572,12 @@ msgstr "Spørringens utførelsestid" msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Lagre" @@ -1628,8 +1635,8 @@ msgstr "Spørringsresultater" msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorer" @@ -1734,7 +1741,7 @@ msgstr "Vis datarad(er)" msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generer" @@ -1833,63 +1840,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Des" @@ -1927,32 +1934,32 @@ msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Lør" @@ -2065,16 +2072,16 @@ msgstr "Uventede karakterer på linje %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Uventet karakter på linje %1$s. Forventet \"tab\", men fant \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minutt" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per time" @@ -2091,7 +2098,7 @@ msgstr "Maksimum størrelse: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentasjon" @@ -2114,14 +2121,14 @@ msgid "en" msgstr "no" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Feil" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-spørring" @@ -2139,210 +2146,210 @@ msgstr "SQL-spørring" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Kjør spørring" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Oppdater" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Test SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Innebygd" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Mangler parametere:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Neste" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Siste" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klikk for å endre" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Sett inn" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Se på" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operasjoner" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Tøm" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Utfør" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Skriv ut" @@ -2359,149 +2366,149 @@ msgstr "Gale tillatelser på konfigurasjonsfilen, den burde ikke være skrivbar! msgid "Font size" msgstr "Fontstørrelse" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Stigende" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Synkende" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sorter" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterier" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Legg til/Slett kriterierad" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Legg til/Slett kolonner" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Oppdater spørring" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Bruk tabeller" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Eller" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "og" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Sett inn" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Slett" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Endre" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "minst ett av ordene" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alle ordene" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "med den nøyaktige setningen" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "som \"regular expression\"" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søkeresultat for \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s treff" msgstr[1] "Totalt: %s treff" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s treff i %2$s" msgstr[1] "%1$s treff i %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Slett" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Søk i database" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller verdier å søke med (jokertegn: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Finn:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Ord er separert med et mellomrom (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "I tabellene:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "I kolonne:" @@ -2546,8 +2553,8 @@ msgstr "Topptekst hver %s. rad" msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2628,7 +2635,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Avslutt" @@ -2645,8 +2652,8 @@ msgstr "i spørring" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 @@ -2657,7 +2664,7 @@ msgstr "Viser rader" msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" @@ -2668,7 +2675,7 @@ msgstr "Spørring tok %01.4f sek" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Med avkrysset:" @@ -2678,8 +2685,8 @@ msgstr "Med avkrysset:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Merk alle" @@ -2717,17 +2724,17 @@ msgstr "Link ikke funnet" msgid "Too many error messages, some are not displayed." msgstr "For mange feilmeldinger, noen vises ikke." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Filen var ikke en opplastet fil." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2735,38 +2742,38 @@ msgstr "" "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "HTML-skjemaet." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfila ble bare delvis opplastet." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Klarte ikke å skrive fila til harddisken." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Feil oppstod imens den opplastede filen ble flyttet." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Kan ikke lese (flyttet) opplastet fil." @@ -2775,66 +2782,66 @@ msgstr "Kan ikke lese (flyttet) opplastet fil." msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "JavaScript må være slått på forbi dette punktet" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Ingen indeks definert!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indekser" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Sammenligning" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primærnøkkelen har blitt slettet" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeksen %s har blitt slettet" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2845,12 +2852,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databaser" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Tjener" @@ -2918,18 +2925,18 @@ msgstr "Brukere" msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binærlogg" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikering" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabler" @@ -3061,8 +3068,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksjon" @@ -3072,11 +3079,11 @@ msgstr "Funksjon" msgid "Operator" msgstr "Operatør" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Verdi" @@ -3084,64 +3091,64 @@ msgstr "Verdi" msgid "Table Search" msgstr "Tabellsøk" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Rediger/Sett inn" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Velg kolonner (minst ett):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Antall poster per side" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Visningsrekkefølge:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Maks antall rader som kan framvises" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Ytterligere søkekriterier" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\") for to forskjellige " "kolonner" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Bruksforklaring" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Tilbakestill zoom" @@ -3214,14 +3221,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3469,7 +3476,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabeller" @@ -3483,12 +3490,12 @@ msgstr "Tabeller" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overheng" @@ -3594,7 +3601,7 @@ msgstr "Åpne" msgid "Closed" msgstr "Lukket" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3733,22 +3740,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Denne innstillingen er avslått, den vil ikke bli lagt til din konfigurasjon" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Sett verdi: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Gjennopprett standard verdi" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Tillat brukere å endre denne verdien" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Tilbakestill" @@ -4039,7 +4046,7 @@ msgstr "Filas tegnsett" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4148,7 +4155,7 @@ msgstr "Merkelappnøkkel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4184,7 +4191,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Bruk venstre anførselstegn med tabell og kolonnenavn" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetsmodus" @@ -5760,10 +5767,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6025,7 +6032,7 @@ msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6033,47 +6040,55 @@ msgstr "" "Tjeneren svarer ikke (eller den lokale MySQL tjenerens sokkel er ikke " "korrekt konfigurert)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Tjeneren svarer ikke." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Endre passord" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Intet passord" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Gjenta" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Passordnøkling" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 kompatibel" @@ -6207,8 +6222,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -6291,7 +6306,7 @@ msgstr "Opprett versjon %s av %s.%s" msgid "authored on %1$s by %2$s" msgstr "Opprett versjon %s av %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6301,65 +6316,65 @@ msgstr "" "dette er en kjent feil i webkit-baserte (Safari, Google Chrome, Arora etc.) " "nettlesere." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Importfilformat" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Fila er under behandling, venligst vent." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" "Vær tålmodig, fila lastes opp. Detaljer om opplastingen er ikke tilgjengelig." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importer til gjeldende tjener" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importer til database \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importer til tabell \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Importer fil:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "FIlen kan bli pakket (%s) eller utpakket." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6449,71 +6464,71 @@ msgstr "" "størrelsen på datalageret InnoDB bruker for å mellomlagre data og indekser " "for sine tabeller." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Mellomlagerbruk" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Ledige sider" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Endrede sider" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Sider som inneholder data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Sider som skal tømmes" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Opptatte sider" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Tilknyttede sider" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Mellomlageraktivitet" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Leseforespørsler" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Skriveforespørsler" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Lesebommer" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Skriveforsinkelser" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Lesebommer i %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Skriveforsinkelser i %" @@ -6744,8 +6759,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6764,140 +6779,140 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Følgende strukturer har enten blitt opprettet eller endret. Her kan du:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Vis en strukturs innhold ved å klikke på dens navn" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Endre noen av dens innstillinger ved å klikke på den tilhørende " "\"Innstillinger\" link" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Endre dens struktur ved å følge \"Struktur\" linken" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Gå til database" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Gå til tabell" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Gå til visning" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binær" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 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" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Restarte innsettinga med %s rader" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -6945,7 +6960,7 @@ msgstr "" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7234,7 +7249,7 @@ msgstr "Tabellinnstillinger" msgid "Rename table to" msgstr "Endre tabellens navn" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Lagringsmotor" @@ -7354,8 +7369,8 @@ msgstr "Velkommen til %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7432,21 +7447,21 @@ msgstr "Ugyldig brukernavn/passord. Ingen tilgang." msgid "Can not find signon authentication script:" msgstr "Kunne ikke finne signon autentiseringsscriptet:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Fila %s inneholder ingen nøkkel id" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Maskinvaregodkjenning mislyktes" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Ingen gyldig autentiseringsnøkkel plugget" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autentiserer..." @@ -7601,20 +7616,21 @@ msgstr "Vis MIME-typer" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Vert" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Generert den" @@ -7854,7 +7870,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Ugyldig antall kolonner i CSV importen i linje %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabellnavn" @@ -8121,7 +8137,7 @@ msgstr "Lag PDF-dokumenter" msgid "Displaying Column Comments" msgstr "Vis kolonnekommentarer" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Nettvisertransformasjon" @@ -8193,7 +8209,7 @@ msgstr "Fjern merking" msgid "Slave configuration" msgstr "Slavekonfigurasjon" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Endre eller rekonfigurer mastertjener" @@ -8206,8 +8222,8 @@ msgstr "" "Hvis ikke, legg til følgende linje i [mysqld] seksjonen:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8227,15 +8243,15 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabler" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Tjener ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8243,17 +8259,17 @@ msgstr "" "Kun slaver startet med --report-host=host_name opsjonen er synlig i denne " "lista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Alle brukere" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8262,27 +8278,27 @@ msgstr "Alle brukere" msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8291,7 +8307,7 @@ msgstr "" "Når vertstabellen er brukt så ignoreres dette feltet og verdier lagret i " "vertstabellen blir brukt istedet." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generer passord" @@ -8361,7 +8377,7 @@ msgstr "Detaljer..." msgid "Event name" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Hendelsestype" @@ -8770,7 +8786,7 @@ msgstr "Ingen tabeller funnet i databasen" msgid "There are no events to display." msgstr "Det er ingen filer å laste opp" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8779,7 +8795,7 @@ msgstr "Det er ingen filer å laste opp" msgid "The %s table doesn't exist!" msgstr "Tabellen %s eksisterer ikke!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8827,95 +8843,95 @@ msgstr "Attributter" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Lag en ny side" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Sidenummer" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatisk disposisjon" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interne relasjoner" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Vennligst velg en side for redigering" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Velg side" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Velg tabeller" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolonnenavn" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relasjonsskjema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Vis rutenett" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Vis farger" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Vis tabelldimensjoner" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Vis alle tabeller med samme lengde" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dataordbok" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Bare vis nøkler" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landskapsformat" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portrettformat" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Opprettet" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8923,7 +8939,7 @@ msgstr "" "Den nåværende siden har referanser til tabeller som ikke lenger eksisterer. " "Vil du slette disse referansene?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "slå av/på kladdevindu" @@ -9225,7 +9241,7 @@ msgstr "Brukere som har adgang til "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Bruker" @@ -9365,8 +9381,8 @@ msgstr "Brukeroversikt" 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 " @@ -9427,11 +9443,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -9528,7 +9544,7 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" @@ -9541,12 +9557,12 @@ msgstr "Overvåkning er aktiv." msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" @@ -9574,14 +9590,14 @@ msgid "Column %s has been dropped" msgstr "Kolonne %s har blitt slettet" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primær" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9591,7 +9607,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltekst" @@ -9619,7 +9635,7 @@ msgstr "Relasjonsvisning" msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." @@ -9627,7 +9643,7 @@ msgstr "Du må sette inn minst en kolonne." msgid "Add column" msgstr "Legg til kolonne(r)" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" @@ -9650,15 +9666,15 @@ msgstr "Etter %s" msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Radstatistikk" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statisk" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamisk" @@ -9666,15 +9682,15 @@ msgstr "dynamisk" msgid "partitioned" msgstr "partisjonert" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Radlengde" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Radstørrelse" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9728,15 +9744,15 @@ msgstr "Utfør indeks(er)" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informasjon" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Plassbruk" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektiv" @@ -9772,20 +9788,20 @@ msgstr "" msgid "Move column" msgstr "Fjern kolonne(r)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på " -"%stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på %" +"stransformasjonsbeskrivelser%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformasjonsvalg" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9797,34 +9813,34 @@ msgstr "" "(\"'\") blant disse verdiene så sett en skråstrek foran (eks. '\\\\xyz' " "eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Ingen" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Som definert:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Etter %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" @@ -10050,7 +10066,7 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" @@ -10369,29 +10385,29 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Filer" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Vis hele spørringen" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Loggnavn" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posisjon" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Original posisjon" @@ -10399,7 +10415,7 @@ msgstr "Original posisjon" msgid "Character Sets and Collations" msgstr "Tegnsett og sammenligninger" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10407,24 +10423,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databasene har blitt slettet." msgstr[1] "%s databasene har blitt slettet." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistikk for databaser" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Masterreplikasjon" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slavereplikasjon" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Slå på statistikk" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10496,40 +10512,40 @@ msgstr "Oppfriskingen av privilegiene lyktes." msgid "Unknown error" msgstr "Ukjent feil" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Kan ikke koble til master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Kan ikke lese masterloggposisjon. Muligens privilegieproblem på master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Kan ikke endre master" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Mastertjener endret til %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Vis masterstatus" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10538,11 +10554,11 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Masterkonfigurering" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10556,19 +10572,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:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; repliker:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Vennligst velg databaser:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10576,7 +10592,7 @@ msgstr "" "Legg til følgende linjer på slutten av din my.cnf og restart MySQL tjeneren " "etterpå.." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10586,88 +10602,88 @@ msgstr "" "vil du se en melding som informerer deg at denne tjeneren er " "konfigurert som master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kjører ikke!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kjører ikke!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Se slavestatustabell" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontrollslave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Full start" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Full stopp" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Resett slave" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Kun SQL tråd %s" -#: server_replication.php:360 +#: server_replication.php:387 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Kun SQL tråd %s" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Kun IO tråd %s" -#: server_replication.php:365 +#: server_replication.php:392 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Kun IO tråd %s" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Feilbehandling:" -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Hopp over nåværende feil" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Hopp over neste" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "feil." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10676,170 +10692,170 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status.php:622 +#: server_status.php:621 #, fuzzy msgid "Handler" msgstr "Behandler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Spørringsmellomlager" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Tråder" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Forsinkede innsettinger" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Nøkkelmellomlager" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Sammenføyninger" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortering" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaksjonskoordinator" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (lukk) alle tabeller" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Vis åpne tabeller" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Vis slaveverter" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Flush spørringsbufferen" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Kjøringsinformasjon" -#: server_status.php:810 +#: server_status.php:809 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Se slavestatustabell" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Antall rader:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Oppdater" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Filter" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ikke endre passordet" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åpne tabeller" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Vis åpne tabeller" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relasjoner" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Spørringstype" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Informasjon" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10847,33 +10863,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Endre oppstartssiden" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Oversikt" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10881,19 +10897,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10901,11 +10917,11 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10913,47 +10929,47 @@ msgstr "" "På en travel tjener så kan byte-tellerene overflyte, så denne statistikken " "som rapportert av MySQL tjeneren kan være unøyaktig." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Mottatt" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Sendt" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Kommando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Kunne ikke koble til MySQL tjener" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10963,17 +10979,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10985,11 +11001,11 @@ msgstr "" "bør du vurdere å øke tmp_table_size verdien slik at midlertidige tabeller " "blir lagret i minnet og ikke på harddisken." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10997,7 +11013,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11005,7 +11021,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11013,23 +11029,23 @@ msgstr "" "Antall INSERT DELAYED håndterertråder i bruk. Hver eneste tabell hvor det " "blir brukt INSERT DELAYE får sin egen tråd." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Antall ganger en rad ble slettet fra en tabell." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11039,7 +11055,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11049,7 +11065,7 @@ msgstr "" "er høyt tyder det på at tjeneren utfører en god del fullindekssøk; for " "eksempel, SELECT col1 FROM foo, da forutsatt at col1 er indeksert." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11058,7 +11074,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11069,7 +11085,7 @@ msgstr "" "har sansynligvis mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som ikke bruker nøkler korrekt." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11077,7 +11093,7 @@ msgstr "" "Antall forespørsler for å lese den forrige raden i nøkkelrekkefølge. Denne " "lesemetoden er hovedsakelig brukt for å optimalisere ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11089,7 +11105,7 @@ msgstr "" "har mest sansynlig mange spørringer som krever at MySQL leser hele tabeller " "eller du har joins som som ikke bruker nøkler korrekt." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11101,37 +11117,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Antall forespørsler for å oppdatere en rad i en tabell." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Antall forespørsler for å sette inn en rad i en tabell." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Antall midlertidige mellomlagersider som det har vært " "oppfriskningsforespørsler på." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11140,7 +11156,7 @@ msgstr "" "Antallet låste sider i InnoDBs mellomlager. Dette er sider som er under " "lesing eller skriving eller ikke kan tømmes eller fjernes av en annen grunn." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11152,11 +11168,11 @@ msgstr "" "kan også regnes ut som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11164,7 +11180,7 @@ msgstr "" "Antall \"tilfeldige\" \"read-aheads\" InnoDB startet. Dette skjer når en " "spørring skanner en stor andel av en tabell men i en tilfeldig rekkefølge." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11172,11 +11188,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11184,7 +11200,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11198,55 +11214,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Antallet dobbeltskrivinger som har blitt utført og antall sider som har " "blitt skrevet på grunn av dette." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11254,35 +11270,35 @@ msgstr "" "Antall ganger ventinger vi hadde fordi loggmellomlageret var for lite og vi " "måtte vente for at det skulle bli tømt før vi kunne fortsette." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11290,51 +11306,51 @@ msgstr "" "Den innkompilerte InnoDB sidestørrelsen (standard 16KB). Mange verdier måles " "i sider; sidestørrelsen gjør at det er lett å konvertere dem til bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimum tid brukt for å oppnå en radlåsing, i millisekunder." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Antall ganger en radlås måtte ventes på." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11343,7 +11359,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11351,7 +11367,7 @@ msgstr "" "Antall ubrukte blokker i nøkkelmellomlageret. Du kan bruke denne verdien til " "å bestemme hvor mye av nøkkelmellomlageret som er i bruk." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11360,17 +11376,17 @@ msgstr "" "Antall brukte blokker i nøkkelmellomlageret. Denne verdien er et høyvannsmål " "som viser maksimum antall blokker som har vært brukt på en gang." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Antall forespørsler for å lese en nøkkelblokk fra mellomlageret." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11380,26 +11396,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Antall forespørsler for å skrive en nøkkelblokk til mellomlageret." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Antall fysiske skrivinger av en nøkkelblokk til disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11410,17 +11426,17 @@ msgstr "" "forskjellige spørringsplaner for den samme spørringen. Standardverdien på 0 " "betyr at ingen spørring har blitt kompilert ennå." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antall rader som venter på å bli skrevet i INSERT DELAYED køer." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11428,38 +11444,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11472,7 +11488,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11480,19 +11496,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11500,11 +11516,11 @@ msgstr "" "Antall joins som ikke bruker indekser. Hvis denne verdien ikke er 0 bør du " "nøye sjekke indeksene til dine tabeller." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Antall joins som trenger en rekkefølgesøk i en referansetabell." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11512,7 +11528,7 @@ msgstr "" "Antall joins uten nøkler som kontrollerer for nøkkelbruk etter hver rad " "(Hvis denne ikke er 0 bør du nøye kontrollere dine tabellindekser.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11520,15 +11536,15 @@ msgstr "" "Antall joins som brukte rekkefølger på den første tabellen. (Det er normalt " "ikke kritisk selv om denne verdien er stor.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Antall joins som utførte en full skann av den første tabellen." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antall midlertidige tabeller for tiden åpnet av slave SQL tråden." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11536,12 +11552,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denne er ON hvis denne tjeneren er en slave som er koblet til en master." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11549,12 +11565,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antall spørringer som har brukt mer enn long_query_time sekunder." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11564,24 +11580,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Antall sorteringer som har vært utført ved hjelp av skanning av tabellen." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Antall ganger en tabellåsing ble utført umiddelbart." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11593,7 +11609,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11603,11 +11619,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11618,75 +11634,75 @@ msgstr "" "stor bør du vurdere å øke thread_cache_size størrelsen. (Normalt vil dette " "ikke gi noen merkbar forbedring hvis du har en god trådimplementering.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "CHAR textarea rows" msgid "Start Monitor" msgstr "CHAR textarea rader" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Utfør indeks(er)" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Oppdater" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea kolonner" -#: server_status.php:1786 +#: server_status.php:1785 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Feilbehandling:" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gjennopprett standard verdi" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "Informasjon" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11695,7 +11711,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11703,18 +11719,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11722,11 +11738,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11734,97 +11750,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Fjern database" -#: server_status.php:1841 +#: server_status.php:1840 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Se slavestatustabell" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Velg tabeller" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Ugylding tabellnavn" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Legg til en ny tjener" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL spørringer" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Vis statistikk" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "Velg side" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Spørringstype" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11832,7 +11848,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekund" msgstr[1] "Sekund" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11952,19 +11968,19 @@ msgstr "" "Måldatabase vil bli fullstendig synkronisert med kildedatabase. " "Kildedatabase vil forbli uforandret." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Tjenervariabler og -innstillinger" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Økts verdi" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Global verdi" @@ -12266,8 +12282,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -12351,42 +12367,42 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" msgid "Wrong data" msgstr "Ingen databaser" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generert av" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Navn" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endret" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12551,17 +12567,17 @@ msgstr "Redigeringsmodus" msgid "Index name:" msgstr "Indeksnavn :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indekstype :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Legg til indeks %s kolonne(r)" @@ -12742,41 +12758,41 @@ msgstr "Eksporter som %s" msgid "Show versions" msgstr "Vis versjoner" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Deaktiver overvåkning av %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deaktiver nå" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktiver overvåkning av %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiver nå" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Opprett versjon %s av %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Opprett versjon" @@ -13148,8 +13164,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13284,8 +13300,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14173,8 +14189,8 @@ msgstr "maks. samtidige tilkoblinger" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen " -#~ "%s?" +#~ "Er du sikker på at du ønsker å slå av alle BLOB referanser for databasen %" +#~ "s?" #, fuzzy #~ msgid "Unknown error while uploading." diff --git a/po/nl.po b/po/nl.po index 1f9f3a0a0d..809aeff728 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 21:20+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Paginanummer:" @@ -38,36 +38,36 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Zoeken" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "Zoeken" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Start" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Beschrijving" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Gebruik deze waarde" @@ -118,18 +118,18 @@ msgstr "Databank %1$s werd aangemaakt." msgid "Database comment: " msgstr "Databankopmerking: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,18 +137,18 @@ msgstr "Tabelopmerkingen" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "Kolom" msgid "Type" msgstr "Type" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "Type" msgid "Null" msgstr "Leeg" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "Leeg" msgid "Default" msgstr "Standaardwaarde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "Standaardwaarde" msgid "Links to" msgstr "Verwijst naar" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "Verwijst naar" msgid "Comments" msgstr "Opmerkingen" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "Opmerkingen" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nee" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -273,33 +273,33 @@ msgid "View dump (schema) of database" msgstr "Bekijk een dump (schema) van databank" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de databank." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Selecteer alles" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "De databanknaam is leeg!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databank %1$s werd hernoemd naar %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databank %1$s werd gekopieerd naar %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -308,12 +308,12 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. Om te weten te komen " "waarom klik %shier%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -323,14 +323,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rijen" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Grootte" @@ -343,7 +343,7 @@ msgstr "in gebruik" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Gecreëerd" @@ -351,7 +351,7 @@ msgstr "Gecreëerd" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Laatst bijgewerkt" @@ -359,7 +359,7 @@ msgstr "Laatst bijgewerkt" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Laatst gecontroleerd" @@ -374,7 +374,7 @@ msgstr[1] "%s tabellen" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Overschakelen op %svisuele builder%s" @@ -406,9 +406,9 @@ msgstr "Tabellen met tracker" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databank" @@ -426,66 +426,66 @@ msgstr "Bijgewerkt" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Actie" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Toon" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Verwijderen" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "niet actief" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versies" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tabel tracken" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Databank-log" @@ -502,12 +502,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Verkeerde parameters!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "De webserver heeft geen rechten om het bestand %s op te slaan." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." @@ -529,119 +529,126 @@ msgstr "Dump is bewaard als %s." msgid "Invalid export type" msgstr "Ongeldig exporttype" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Waarde voor kolom \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gebruik OpenStreetMaps als basislayer" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Voeg een punt toe" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Lijnstuk definitie" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Aangeschreven cirkel" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Ingeschreven cirkel" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Voeg een lijnstuk toe" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Voeg een ingeschreven cirkel toe" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygoon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Voeg een veelhoek toe" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Een geometrie toevoegen" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Uitvoer" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Kies \"GeomFormText\" uit de kolom \"Functie\" en plaats de onderstaande " "string in het veld \"Waarde\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Toon bladwijzer" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "De bladwijzer werd verwijderd." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:400 +#: import.php:404 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 " @@ -662,30 +669,30 @@ msgstr "" "de maximale bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan de karakterset van het bestand niet omzetten zonder de 'character set " "conversion' bibliotheek" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bladwijzer %s aangemaakt" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import is geslaagd, %d queries uitgevoerd." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -693,7 +700,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, indien u de import wil afmaken kunt u " "het bestand opnieuw invoeren." -#: import.php:513 +#: import.php:517 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." @@ -702,9 +709,9 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP " "worden versoepeld." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Uw SQL-query is succesvol uitgevoerd" @@ -720,7 +727,7 @@ msgstr "" "phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan " "kan." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -729,7 +736,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige databank te VERWIJDEREN!" @@ -769,7 +776,7 @@ msgstr "Index toevoegen" msgid "Edit Index" msgstr "Index bewerken" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Voeg %d kolom(men) toe aan index" @@ -819,24 +826,24 @@ msgstr "Sluiten" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Grafiek met huidig dataverkeer" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Live conn./process grafiek" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Grafiek van actieve queries" @@ -846,24 +853,24 @@ msgstr "Statische gegevens" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -883,7 +890,7 @@ msgstr "Serververkeer (in KiB)" msgid "Connections since last refresh" msgstr "Verbindingen sinds laatste verversing" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processen" @@ -901,7 +908,7 @@ msgstr "Questions sinds laatste verversing" msgid "Questions (executed statements by the server)" msgstr "Questions (aantal door de server uitgevoerde opdrachten)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Querystatistieken" @@ -948,13 +955,13 @@ msgstr "Systeemwisselbestand" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1006,32 +1013,32 @@ msgstr "Doorgestuurde bytes" msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Verbindingen" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1045,11 +1052,11 @@ msgstr "%d tabel(len)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Instellingen" @@ -1070,12 +1077,12 @@ msgid "Please add at least one variable to the series" msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Geen" @@ -1175,7 +1182,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Grafiektitel" @@ -1263,7 +1270,7 @@ msgstr "Verklaar resultaat" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tijd" @@ -1363,8 +1370,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" @@ -1578,12 +1585,12 @@ msgstr "Query-uitvoertijd" msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Opslaan" @@ -1643,8 +1650,8 @@ msgstr "Queryresultaten" msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Negeren" @@ -1752,7 +1759,7 @@ msgstr "Regel(s) met gegevens tonen" msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Genereren" @@ -1851,63 +1858,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -1945,32 +1952,32 @@ msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "za" @@ -2085,16 +2092,16 @@ msgstr "Onverwachte tekens op lijn %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Onverwacht teken op lijn %1$s. Tab verwacht, \"%2$s\" gevonden" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per seconde" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minuut" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per uur" @@ -2111,7 +2118,7 @@ msgstr "Maximale grootte: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentatie" @@ -2134,14 +2141,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fout" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-query" @@ -2159,212 +2166,212 @@ msgstr "SQL-query" msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "zonder PHP-code" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Genereer PHP-code" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Query uitvoeren" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Vernieuw" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 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/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "zo" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Ontbrekende parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar databank "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Structuur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Invoegen" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Verkennen" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Handelingen" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Legen" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Uitvoeren" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Afdrukken" @@ -2383,149 +2390,149 @@ msgstr "" msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Oplopend" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Aflopend" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sorteren" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criterium" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Criterium-rijen toevoegen/verwijderen" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Kolommen toevoegen/verwijderen" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Wijzig Query" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Tabellen gebruiken" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Of" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "En" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Toevoegen" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Verwijder" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Aanpassen" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query op databank %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "ten minste een van de woorden" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alle woorden" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "de exacte zin" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "als een reguliere expressie" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Zoekresultaten voor \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s overeenkomst" msgstr[1] "Totaal: %s overeenkomsten" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s overeenkomst in %2$s" msgstr[1] "%1$s overeenkomsten in %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Verwijderen" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Zoeken in de databank" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woorden of waarden waarnaar gezocht moet worden (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Zoek:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Woorden worden gesplitst door een spatiekarakter (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "In de tabellen:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "In de kolom:" @@ -2570,8 +2577,8 @@ msgstr "Hoofdingen iedere %s regels" msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2648,7 +2655,7 @@ msgid "The row has been deleted" msgstr "De regel werd verwijderd" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "stop proces" @@ -2667,8 +2674,8 @@ msgstr "in de query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2680,7 +2687,7 @@ msgstr "Weergave van records" msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "query duurde %01.4f sec" @@ -2691,7 +2698,7 @@ msgstr "query duurde %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Met geselecteerd:" @@ -2701,8 +2708,8 @@ msgstr "Met geselecteerd:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Selecteer alles" @@ -2740,17 +2747,17 @@ msgstr "Link niet gevonden" msgid "Too many error messages, some are not displayed." msgstr "Er zijn teveel foutmeldingen, sommige worden niet weergegeven." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Bestand is geen geüpload bestand." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geüploade bestand is groter dan de optie 'upload_max_filesize' uit uw " "php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2758,27 +2765,27 @@ msgstr "" "Het geüploade bestand overschrijdt de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML-formulier." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Het geüploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "De map voor tijdelijke bestanden ontbreekt." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de harde schijf is mislukt." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2786,11 +2793,11 @@ msgstr "" "Fout bij het verplaatsen van het geüploade bestand, zie [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Fout bij het verplaatsen van het geüploade bestand." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Het geüploade bestand kan niet gelezen (verplaatst) worden." @@ -2799,66 +2806,66 @@ msgstr "Het geüploade bestand kan niet gelezen (verplaatst) worden." msgid "Open new phpMyAdmin window" msgstr "Nieuw phpMyAdmin-scherm openen" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript moet ingeschakeld zijn voorbij dit punt" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Geen index gedefinieerd!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexen" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Collatie" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Opmerking" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "De primaire sleutel is vervallen" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index %s is vervallen" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2869,12 +2876,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databanken" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2942,18 +2949,18 @@ msgstr "Gebruikers" msgid "Synchronize" msgstr "Synchroniseren" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binaire log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicatie" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabelen" @@ -3089,8 +3096,8 @@ msgstr "" "wijzigingen zullen verdwijnen na verversen van deze pagina. Gelieve na te " "kijken of de tabelstructuur gewijzigd werd." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Functie" @@ -3100,11 +3107,11 @@ msgstr "Functie" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Waarde" @@ -3112,62 +3119,62 @@ msgstr "Waarde" msgid "Table Search" msgstr "In de tabel zoeken" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Aanpassen/Invoegen" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Selecteer velden (minstens één):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Zoekcondities toevoegen (het \"where\"-gedeelte van de query):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Aantal rijen per pagina" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Volgorde van weergave:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Gebruik deze kolom om ieder punt een naam te geven" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maximum aantal af te drukken regels" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Bijkomende zoekcriteria" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Voer een \"query als voorbeeld\" (wildcard: \"%\") uit op twee verschillende " "kolommen" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Doorzoek/bewerk de punten" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Hoe te gebruiken" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Herstel zoom" @@ -3242,17 +3249,17 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Een klein getal met variabele kommapositie, toegelaten waarden zijn " -"-3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" +"Een klein getal met variabele kommapositie, toegelaten waarden zijn -" +"3,402823466E+38 tot -1,175494351E-38, 0, en 1,175494351E-38 tot 3.402823466E" "+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Een getal met variabele kommapositie met dubbel nauwkeurigheid, toegelaten " @@ -3510,7 +3517,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabellen" @@ -3524,12 +3531,12 @@ msgstr "Tabellen" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3636,7 +3643,7 @@ msgstr "Geopend" msgid "Closed" msgstr "Gesloten" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3776,22 +3783,22 @@ msgstr "" "Deze instelling is uitgeschakeld, het is niet van toepassing op uw " "configuratie" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Waarde instellen op: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Standaard waarde herstellen" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Gebruikers toestaan deze waarde aan te passen" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Herstellen" @@ -4085,7 +4092,7 @@ msgstr "Karakterset voor het bestand" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Opmaak" @@ -4194,7 +4201,7 @@ msgstr "Labelsleutel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4230,7 +4237,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Aanhalingstekens (`) bij tabel- en kolomnamen gebruiken" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL-compatibiliteitsmodus" @@ -5829,10 +5836,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Vereist dat SQL-Validator geactiveerd is" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6106,56 +6113,64 @@ msgstr "De extensie %s ontbreekt. Gelieve uw PHP-configuratie te controleren." msgid "possible deep recursion attack" msgstr "mogelijke diepe recursieaanval" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "De server reageert niet (of de socket van de server is niet juist ingesteld)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "De server reageert niet." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Gelieve de rechten op de folder met de databank na te kijken." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Details..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Verbinding voor de controlegebruiker zoals in de configuratie is opgegeven " "is mislukt." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Wachtwoord wijzigen" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Geen wachtwoord" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Type opnieuw" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Wachtwoord-hashing" # Kan ook vertaald worden als "werkt met ..." -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatibel met MySQL 4.0" @@ -6287,13 +6302,13 @@ msgstr ", @TABLE@ wordt vervangen door de 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" -"%5$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" +"$s voor meer details." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6369,7 +6384,7 @@ msgstr "gecommit op %1$s door %2$s" msgid "authored on %1$s by %2$s" msgstr "geschreven door %2$s op %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6379,33 +6394,33 @@ msgstr "" "last van een een bekende bug in op webkit gebaseerde browsers (Safari, " "Google Chrome, Arora, enz.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s van %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Uw geïmporteerde bestand wordt ingeladen..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sec." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Ongeveer %MIN minuten en %SEC seconden resterend." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Nog ongeveer %SEC seconden resterend." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Het bestand wordt verwerkt, een ogenblik geduld." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6413,30 +6428,30 @@ msgstr "" "Een ogenblik geduld, het bestand wordt geüpload. Details over de voortgang " "zijn niet beschikbaar." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importeren naar de huidige MySQL-server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importeren in databank \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importeren in tabel \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Te importeren bestand:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Het bestand kan gecomprimeerd (%s) of ongecomprimeerd zijn." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6525,71 +6540,71 @@ msgstr "" "De grootte van de geheugenbuffer dat InnoDB gebruikt voor het cachen van " "gegevens en indexen van zijn tabellen." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Gebruik van Buffer Pool" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pagina's" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Vrije pages" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Vervuilde pagina's" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pagina's die gegevens bevatten" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pages te schonen" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Pagina's in gebruik" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Latched pagina's" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Activiteit van Buffer Pool" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Leesverzoeken" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Schrijfverzoeken" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Leesmissers" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Schrijfvertragingen" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Leesmissers in %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Schrijfvertragingen in %" @@ -6827,11 +6842,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de " -"%sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de %" +"sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:135 msgid "Related Links" @@ -6845,125 +6860,125 @@ msgstr "De PrimeBase XT Blog door Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Bekijk de inhoud van een structuur door op de naam te klikken" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Een instelling veranderen door op \"Opties\" te klikken" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Klik op de \"Structuur\"-link om de structuur aan te passen" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Ga naar databank: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Instellingen voor %s wijzigen" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Ga naar tabel: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Structuur van %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Ga naar view: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Verbergen" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binair" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Vanwege z'n lengte,
is dit veld misschien niet te wijzigen" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "uploadfolder op webserver" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7008,7 +7023,7 @@ msgstr "Tabelvoorvoegsel toevoegen" msgid "Add prefix" msgstr "Voorvoegsel toevoegen" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" @@ -7296,7 +7311,7 @@ msgstr "Tabelopties" msgid "Rename table to" msgstr "Tabel hernoemen naar" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Opslag-engine" @@ -7410,8 +7425,8 @@ msgstr "Welkom bij %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7491,21 +7506,21 @@ msgstr "Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd." msgid "Can not find signon authentication script:" msgstr "Signon-authenticatiescript kon niet gevonden worden:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Bestand %s bevat geen sleutel-ID" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardware-authenticatie mislukt" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Geen geldige authenticatiesleutel aanwezig" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Authenticeren..." @@ -7642,20 +7657,21 @@ msgstr "Toon beschikbare MIME-types" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Machine" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Genereertijd" @@ -7913,7 +7929,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Verkeerd aantal velden in CSV-invoer op regel %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabelnaam" @@ -8178,7 +8194,7 @@ msgstr "Aanmaken van PDF-bestanden" msgid "Displaying Column Comments" msgstr "Toon kolomopmerkingen" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browsertransformaties" @@ -8253,7 +8269,7 @@ msgstr "Deselecteer alles" msgid "Slave configuration" msgstr "Slave-instellingen" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Masterserver wijzigen" @@ -8267,8 +8283,8 @@ msgstr "" "toe aan de sectie [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8288,15 +8304,15 @@ msgid "Slave status" msgstr "Slave-status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabelen" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server-ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8304,17 +8320,17 @@ msgstr "" "Enkel slaves gestart met de optie --report-host=host_name zijn zichtbaar in " "deze lijst." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Gebruiker voor de slave-replicatie toevoegen" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Elke gebruiker" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8323,27 +8339,27 @@ msgstr "Elke gebruiker" msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Elke machine" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Gebruik hosttabel" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8352,7 +8368,7 @@ msgstr "" "Indien er gebruik wordt gemaakt van de hosttabel is dit veld niet van " "toepassing." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Wachtwoord genereren" @@ -8413,7 +8429,7 @@ msgstr "Details" msgid "Event name" msgstr "Gebeurtenisnaam" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Gebeurtenistype" @@ -8759,7 +8775,7 @@ msgstr "Geen gebeurtenis met naam %1$s gevonden in databank %2$s" msgid "There are no events to display." msgstr "Er zijn geen gebeurtenissen om weer te geven." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8768,7 +8784,7 @@ msgstr "Er zijn geen gebeurtenissen om weer te geven." msgid "The %s table doesn't exist!" msgstr "De tabel %s bestaat niet!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8814,91 +8830,91 @@ msgstr "Attributen" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Een nieuwe pagina aanmaken" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Paginanaam" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatische lay-out gebaseerd op" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interne relaties" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Kies een pagina om aan te passen" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Selecteer pagina" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Selecteer tabellen" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolomnamen" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Toon relationeel schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Selecteer uitvoer relationeel type" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Toon raster" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Toon kleur" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Tabelafmetingen weergeven" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Alle tabellen weergeven met dezelfde breedte" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Data Woordenboek" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Alleen sleutels tonen" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landschap" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Oriëntatie" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Papierformaat" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8906,7 +8922,7 @@ msgstr "" "De huidige pagina heeft referenties naar tabellen die niet meer bestaan. " "Wilt u deze referenties verwijderen?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Voorbeeldkader aan/uit" @@ -9217,7 +9233,7 @@ msgstr "Gebruikers die toegang hebben tot "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Gebruiker" @@ -9357,8 +9373,8 @@ msgstr "Gebruikers overzicht" 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-" "privilegestabel. De inhoud van deze tabel kan verschillen met de rechten van " @@ -9420,11 +9436,11 @@ msgstr "Leegmaken" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Deze SQL-query opslaan" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Elke gebruiker toegang geven tot deze bladwijzer" @@ -9518,10 +9534,10 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige " -"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie" -"%s." +"PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%" +"s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" @@ -9534,12 +9550,12 @@ msgstr "Tracking is ingeschakeld." msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" @@ -9567,14 +9583,14 @@ msgid "Column %s has been dropped" msgstr "Kolom %s is verwijderd" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primaire sleutel" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9584,7 +9600,7 @@ msgid "Spatial" msgstr "Ruimtelijk" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Volledige tekst" @@ -9610,7 +9626,7 @@ msgstr "Relatieoverzicht" msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." @@ -9618,7 +9634,7 @@ msgstr "U moet minstens één kolom toevoegen." msgid "Add column" msgstr "Kolom toevoegen" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s kolom(men) toevoegen" @@ -9641,15 +9657,15 @@ msgstr "Na %s" msgid "Create an index on  %s columns" msgstr "Een index aanmaken op kolommen %s " -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Rijstatistieken" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statisch" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamisch" @@ -9657,15 +9673,15 @@ msgstr "dynamisch" msgid "partitioned" msgstr "gepartitioneerd" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Lengte van de rij" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Grootte van de rij" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Volgende automatische indexwaarde" @@ -9711,15 +9727,15 @@ msgstr "Een SPATIAL-index toevoegen" msgid "Add FULLTEXT index" msgstr "Een FULLTEXT-index toevoegen" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informatie" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Ruimtegebruik" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effectief" @@ -9754,7 +9770,7 @@ msgstr "" msgid "Move column" msgstr "Kolom(men) verwijderen" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9763,11 +9779,11 @@ msgstr "" "Voor een lijst met beschikbare transformatieopties en MIME-type-" "transformaties, klik op %sTransformatieopties%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Transformatieopties" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9779,35 +9795,35 @@ msgstr "" "(\"'\") moet invoegen in deze waardes, plaats er dan een backslash voor " "(bijvoorbeeld '\\\\xyz' of 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM- of SET-gegevens te lang?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Meer plaats om te bewerken" # "Geen" of indien telbaar: "Geen enkele". -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Geen" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Zoals aangegeven:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION-definitie" @@ -10013,7 +10029,7 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databanken" @@ -10299,29 +10315,29 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Bestanden" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Toon volledige queries" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Lognaam" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Positie" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Oorspronkelijke positie" @@ -10329,31 +10345,31 @@ msgstr "Oorspronkelijke positie" msgid "Character Sets and Collations" msgstr "Karaktersets en collaties" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databank werd succesvol verwijderd." msgstr[1] "%1$d databanken werden succesvol verwijderd." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Databankstatistieken" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Masterreplicatie" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave-replicatie" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Statistieken inschakelen" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10423,40 +10439,40 @@ msgstr "De rechten werden succesvol opnieuw ingeladen." msgid "Unknown error" msgstr "Onbekende fout" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Het verbinden met de master %s is mislukt." -#: server_replication.php:96 +#: server_replication.php:101 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 " "probleem met de rechten op de master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Wijzigen van master is mislukt" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Masterserver succesvol gewijzigd in %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatieproces." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Toon masterstatus" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Toon verbonden slaves" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10465,11 +10481,11 @@ msgstr "" "Deze server is niet ingesteld als master in een replicatieproces. Wilt u dit " "nu instellen?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Masterinstellingen" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10482,19 +10498,19 @@ msgstr "" "u de meerderheid van uw databanken wil repliceren) of u kiest ervoor om " "alleen enkele geselecteerde databanken te repliceren:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Repliceer alle databanken; Negeer:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Negeer alle databanken; Repliceer enkel:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Selecteer uit de onderstaande databanken:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10502,7 +10518,7 @@ msgstr "" "Voeg nu de onderstaande regels aan de sectie [mysqld] van uw my.cnf toe en " "herstart uw MySQL-server." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10512,84 +10528,84 @@ 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread niet actief!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread niet actief!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server is ingesteld als slave in een replicatieproces. Wilt u:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Slave-statustabel bekijken" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Databanken met master synchroniseren" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Beheer slave:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Start volledig" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Stop volledig" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Slave herinstellen" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Start enkel de SQL-Thread" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Stop enkel de SQL-Thread" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Start enkel de IO Thread" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Stop enkel de IO Thread" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Foutenbeheer:" # "errors" => "fouten" # master and slave _what_? -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Sla de huidige error over" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Sla de volgende" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "errors over." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10598,12 +10614,12 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatieproces. Wilt u dit " "nu instellen?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10611,119 +10627,119 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het " "al gesloten." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Handler" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Querycache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Threads" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Tijdelijke gegevens" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Vertraagde inserts" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Sleutelcache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joins" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortering" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transactiecoördinator" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Alle tabellen schonen (sluiten)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Toon open tabellen" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Toon slave-hosts" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Toon slave-status" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Schoon querycache" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Runtime-informatie" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "alle statusvariabelen" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Opvolgen" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Raadgever" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Aantal gegevenspunten : " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Vernieuwingsfrequentie: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filters" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Bevat het woord:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Enkel belangrijke waarden tonen" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filteren op categorie..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Toon niet-opgemaakte waarden" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Gerelateerde links:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Analyse uitvoeren" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Richtlijnen" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10731,7 +10747,7 @@ msgstr "" "De raadgever kan suggesties doen voor servervariabelen door de " "statusvariabelen van de server te analyseren." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10740,7 +10756,7 @@ msgstr "" "Hou er rekening mee dat dit systeem suggesties doet op basis van eenvoudige " "berekeningen en vuistregels, die mogelijk niet goed werken op uw systeem." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10751,7 +10767,7 @@ msgstr "" "wijziging ongedaan kan maken. Verkeerde instellingen kunnen een sterk " "negatief effect hebben op de performantie." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10763,31 +10779,31 @@ msgstr "" "waarneembare verbetering vastgesteld kon worden." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Questions sinds opstart: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Opdrachten" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Netwerkverkeer sinds opstart: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Deze MySQL-server draait inmiddels %1$s. Deze is gestart op %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10795,13 +10811,13 @@ msgstr "" "Deze MySQL-server is ingesteld als master en slave in een " "replicatieproces." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL-server is ingesteld als master in een replicatieproces." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Deze MySQL-server is ingesteld als slave in een replicatiereplicatie proces." # weggehaald. -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10818,11 +10834,11 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replicatiestatus" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10830,35 +10846,35 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Ontvangen" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Verzonden" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Opdracht" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10866,11 +10882,11 @@ msgstr "" "Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " "de verbinding keurig af te sluiten." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Aantal gefaalde pogingen om te verbinden met de MySQL-server." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10881,18 +10897,18 @@ msgstr "" "hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van de tijdelijke binaire logcache." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Het aantal verbindingspogingen (succesvol of niet) met de MySQL-server." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10904,11 +10920,11 @@ msgstr "" "groot is, is het aangewezen om tmp_table_size te vergroten om tijdelijke " "tabellen aan te maken in geheugen in plaats van op harde schijf." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10916,7 +10932,7 @@ msgstr "" "Het aantal in het geheugen geplaatste tijdelijke tabellen dat automatisch " "door de server werd aangemaakt tijdens het uitvoeren van opdrachten." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10924,7 +10940,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10932,23 +10948,23 @@ msgstr "" "Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " "tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH-opdrachten." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT-opdrachten." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Het aantal keer dat een rij werd verwijderd uit een tabel." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10958,7 +10974,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10968,7 +10984,7 @@ msgstr "" "hoog geeft dit een indicatie dat de server veel scans doet op de volledige " "index; bijvoorbeeld SELECT kolom1 FROM foo, waarbij kolom1 is geïndexeerd." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10977,7 +10993,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10987,7 +11003,7 @@ msgstr "" "wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " "of bij het doen van een indexscan." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10995,7 +11011,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutelvolgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11008,7 +11024,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11021,35 +11037,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK-opdrachten." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Het aantal update-opdrachten voor een tabelrij." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Het aantal opdrachten om een rij aan een tabel toe te voegen." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Het aantal pagina's dat momenteel \"dirty\" is." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal bufferpool-pagina's dat is geschoond." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Het aantal vrije pagina's." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11059,7 +11075,7 @@ msgstr "" "waarin momenteel wordt gelezen of geschreven, of die om een andere reden " "niet geschoond of verwijderd kunnen worden." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11071,11 +11087,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Totale grootte van de bufferpool, in pagina's." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11084,7 +11100,7 @@ msgstr "" "gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11092,11 +11108,11 @@ msgstr "" "Het aantal sequentiële read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurt wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11104,7 +11120,7 @@ msgstr "" "Het aantal logische leesoperaties dat InnoDB niet kon doen vanuit de " "bufferpool maar waarvoor een extra pagina ingeladen moest worden." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11118,86 +11134,86 @@ msgstr "" "zijn geschoond. Deze teller houdt bij hoe vaak dit voorkomt. Indien de " "bufferpool-grootte goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync()-operaties." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync()-operaties." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande leesoperaties." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijfoperaties." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Het totale aantal operaties voor het lezen van gegevens." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Het totale aantal operaties voor het schrijven van gegevens." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Het aantal pagina's dat werd geschreven voor doublewrite-operaties." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite-operaties." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Het aantal keer dat er gewacht moest worden vanwege een volle logbuffer." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Het aantal verzoeken voor het schrijven in het logboek." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijfoperaties op het logbestand." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Het aantal pagina's dat werd aangemaakt." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11206,54 +11222,54 @@ msgstr "" "Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " "eenvoudig deze om te zetten naar bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Het aantal gelezen pagina's." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Het aantal geschreven pagina's." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "De gemiddelde tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "De totale tijd besteed aan het verkrijgen van rij-locks, in milliseconden." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "De maximale tijd nodig om een rij-lock te verkrijgen, in milliseconden." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Het aantal keer dat er op een rij-lock moest worden gewacht." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11262,13 +11278,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11277,15 +11293,15 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Het aantal leesopdrachten voor een sleutelblok uit het cache." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11295,7 +11311,7 @@ msgstr "" "key_reads groot is, is de waarde van key_buffer_size mogelijk te laag. De " "cache miss rate kan worden berekend met Key_reads / Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11303,22 +11319,22 @@ msgstr "" "Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " "vergelijking met leesverzoeken (berekende waarde)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijfopdrachten voor een sleutelblok naar de cache." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijfopdrachten voor een sleutelblok naar disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " "(berekende waarde)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11329,7 +11345,7 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11337,13 +11353,13 @@ msgstr "" "Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " "server gestart werd." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staat om te worden geschreven in INSERT DELAYED-" "wachtrijen." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11351,21 +11367,21 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " "tabelcachewaarde te laag." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven naar " "logboeken)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11375,19 +11391,19 @@ msgstr "" "wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" "statement uit te voeren." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het querycache." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Het aantal cache-hits." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan de cache werd toegevoegd." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11400,7 +11416,7 @@ msgstr "" "gebruikt (least recently used, LRU) strategie om te bepalen welke queries " "worden verwijderd." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11408,19 +11424,19 @@ msgstr "" "Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de instelling query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in de cache staat." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in de querycache." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11428,13 +11444,13 @@ msgstr "" "Het aantal joins dat geen gebruik maakt van een index. Indien dit geen 0 is, " "is het aan te raden om het gebruik van indexen te controleren." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Het aantal joins dat een bereik beperking toepassen op een gerefereerde " "tabel." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11443,7 +11459,7 @@ msgstr "" "van een sleutel. (Indien dit geen 0 is, is het aan te raden om het gebruik " "van indexen te controleren.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11451,17 +11467,17 @@ msgstr "" "Het aantal joins dat een bereik beperking gebruikt op de eerste tabel. (Dit " "hoeft geen groot probleem te zijn, zelfs niet bij grote tabellen.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Het aantal joins dat een volledige scan van de eerste tabel uitvoerde." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave-SQL-" "thread." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11469,13 +11485,13 @@ msgstr "" "Het totaal aantal transacties dat moest worden herhaald door de replicatie-" "slave-SQL-thread (sinds het opstarten van de server)." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Dit staat op 'ON' indien deze server als een replicatie-slave verbonden is " "met een masterserver." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11483,14 +11499,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Het aantal queries waarvan het uitvoeren langer dan long_query_time seconden " "duurde." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11500,24 +11516,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de " "systeemvariabele sort_buffer_size te vergroten." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Het aantal sorteringen dat werd uitgevoerd door het scannen van de tabel." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Het aantal keer dat een tabel-lock direct kon worden verkregen." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11529,7 +11545,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimaliseren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11539,11 +11555,11 @@ msgstr "" "met Threads_created/Connections. Indien deze waarde rood staat aangegeven is " "het aan te raden om thread_cache_size te vergroten." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11555,47 +11571,47 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thread-implementatie, geen noemenswaardige prestatieverbetering.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Threadcache-trefprecentage (berekende waarde)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Start bewaking" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instructies/Setup" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Klaar met herschikken/bewerken van de grafieken" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Een grafiek toevoegen" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Herschikken/bewerken van de grafieken" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Vernieuwingsfrequentie" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Grafiekkolommen" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Grafiekschikking" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11604,15 +11620,15 @@ msgstr "" "browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " "heeft." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Standaardwaarde herstellen" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Bewakingsinstructies" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11627,7 +11643,7 @@ msgstr "" "dat general_log veel gegevens genereert en dat de belasting van de server " "tot 15% kan stijgen" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11639,11 +11655,11 @@ msgstr "" "Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " "grafiekfunctionaliteit gebruiken." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Gebruik van de monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11654,7 +11670,7 @@ msgstr "" "'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " "bij iedere grafiek." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11667,105 +11683,105 @@ msgstr "" "geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " "te analyseren." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Hou rekening met:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " "it is advisable to select only a small time span and to disable the " "general_log and empty its table once monitoring is not required any more." msgstr "" -"Het inschakelen van de general_log kan de serverbelasting verhogen met " -"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " +"Het inschakelen van de general_log kan de serverbelasting verhogen met 5-" +"15%. Wees er ook bewust van dat het genereren van statistieken uit de " "logboeken een belastende taak is, daarom is het aan te raden om alleen een " "kleine periode te selecteren, en de general_log uit te schakelen en de tabel " "te legen zodra het monitoren niet meer nodig is." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Grafiek instellen" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Statusvariabele(n)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Selecteer series:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Algemeen bewaakt" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "of geef variabelenaam op:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Verschil weergeven" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Een scheiding toepassen" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Eenheid toevoegen aan gegevenswaarden" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Deze serie toevoegen" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Reeks leegmaken" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Series in grafiek:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Logstatistieken" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Geselecteerde tijdspanne:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " "groeperen" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Kies het logbestand waarvan u de statistieken wil genereren." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Query-analyser" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d seconden" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11883,19 +11899,19 @@ msgstr "" "De bestemmingsdatabank zal volledig worden gesynchroniseerd met de " "brondatabank. De brondatabank zal niet worden gewijzigd." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Variabele instellen is mislukt" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Servervariabelen en -instellingen" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessievariabelen" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globale waarde" @@ -12090,10 +12106,10 @@ msgid "" msgstr "" "Deze %soptie%s zou uitgeschakeld moeten zijn gezien het de mogelijkheid " "geeft aan kwaadwillenden om op grote schaal aanmeldinspogingen uit te voeren " -"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan " -"%strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is " -"mogelijk niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw " -"provider komt waar ook vele andere klanten gebruik van maken." +"op willekeurige MySQL-servers. Indien toch noodzakelijk gebruik dan %" +"strusted proxies list%s. Echter, IP-adres gebaseerde beveiliging is mogelijk " +"niet betrouwbaar wanneer uw IP-adres uit het netwerk van uw provider komt " +"waar ook vele andere klanten gebruik van maken." #: setup/lib/index.lib.php:296 msgid "" @@ -12194,8 +12210,8 @@ msgstr "" "U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken " "gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. " "Dit is niet aanbevolen voor productiesystemen gezien iemand die het URL van " -"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype" -"%s [kbd]cookie[/kbd] of [kbd]http[/kbd]." +"phpMyAdmin achterhaald direct toegang heeft. Gebruik het %sauthenticatietype%" +"s [kbd]cookie[/kbd] of [kbd]http[/kbd]." #: setup/lib/index.lib.php:314 #, php-format @@ -12240,42 +12256,42 @@ msgstr "" msgid "Wrong data" msgstr "Verkeerde gegevens" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-resultaat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Gegenereerd door" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12410,18 +12426,18 @@ msgstr "Index bewerken" msgid "Index name:" msgstr "Indexnaam:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indextype:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg  %s  kolom(men) toe aan index" @@ -12587,38 +12603,38 @@ msgstr "Exporteren als %s" msgid "Show versions" msgstr "Versies weergeven" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Tracking uitschakelen van %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Tracking inschakelen van %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Nu inschakelen" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Versie %1$s van %2$s aanmaken" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Versie aanmaken" @@ -13003,8 +13019,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "De huidige verhouding van vrij querycachegeheugen tot de totale " "querycachegrootte is %s%%. Dit zou meer dan 80%% moeten zijn" @@ -13161,8 +13177,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% van alle sorteeracties veroorzaken tijdelijke tabellen, deze waarde zou " "lager moeten zijn dan 10%%." diff --git a/po/pa.po b/po/pa.po index 2f2399f49b..11dd3f0e07 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" -"Language-Team: Punjabi " -"\n" -"Language: pa\n" +"Language-Team: Punjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.2\n" @@ -25,11 +25,11 @@ msgstr "" msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "ਪੰਨਾ ਨੰਬਰ" @@ -41,36 +41,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "ਲੱਭੋ" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "ਲੱਭੋ" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "ਚੱਲੋ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "" @@ -119,18 +119,18 @@ msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ" msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "" msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "" @@ -274,45 +274,45 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -322,14 +322,14 @@ msgstr "" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "" @@ -342,7 +342,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "" @@ -350,7 +350,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "" @@ -358,7 +358,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "" @@ -373,7 +373,7 @@ msgstr[1] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -405,9 +405,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -425,66 +425,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -500,12 +500,12 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -516,7 +516,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -525,160 +525,160 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -692,7 +692,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -701,7 +701,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -791,24 +791,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -818,24 +818,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "" @@ -855,7 +855,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -873,7 +873,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -915,13 +915,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -973,32 +973,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1012,11 +1012,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1037,12 +1037,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1135,7 +1135,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1215,7 +1215,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1305,8 +1305,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1517,12 +1517,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1578,8 +1578,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1678,7 +1678,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1775,63 +1775,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1869,32 +1869,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2007,16 +2007,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2033,7 +2033,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2056,14 +2056,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2081,210 +2081,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2301,149 +2301,149 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "" @@ -2488,8 +2488,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2566,7 +2566,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2583,8 +2583,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2595,7 +2595,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2606,7 +2606,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2616,8 +2616,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "" @@ -2655,51 +2655,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2708,66 +2708,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2776,12 +2776,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2849,18 +2849,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -2989,8 +2989,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3000,11 +3000,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3012,60 +3012,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3138,14 +3138,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3388,7 +3388,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3402,12 +3402,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3509,7 +3509,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3647,22 +3647,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3927,7 +3927,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4036,7 +4036,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4072,7 +4072,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5504,10 +5504,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5757,52 +5757,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5932,8 +5940,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6007,69 +6015,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6145,71 +6153,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6400,8 +6408,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6416,123 +6424,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6576,7 +6584,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6863,7 +6871,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -6977,8 +6985,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7048,21 +7056,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7199,20 +7207,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7437,7 +7446,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7637,7 +7646,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7703,7 +7712,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7714,8 +7723,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7735,31 +7744,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7768,34 +7777,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7854,7 +7863,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8192,7 +8201,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8201,7 +8210,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8247,97 +8256,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8629,7 +8638,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8762,8 +8771,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8820,11 +8829,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8906,7 +8915,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -8919,12 +8928,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -8952,14 +8961,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8969,7 +8978,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -8993,7 +9002,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9001,7 +9010,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9024,15 +9033,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9040,15 +9049,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9094,15 +9103,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9129,18 +9138,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9148,33 +9157,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9348,7 +9357,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9623,29 +9632,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9653,31 +9662,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9745,49 +9754,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9796,255 +9805,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10052,115 +10061,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10168,78 +10177,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10247,7 +10256,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10255,42 +10264,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10298,33 +10307,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10333,242 +10342,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10576,99 +10585,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10676,18 +10685,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10695,61 +10704,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10758,7 +10767,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10766,18 +10775,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10785,11 +10794,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10797,86 +10806,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -10992,19 +11001,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11288,42 +11297,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11454,16 +11463,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11622,38 +11631,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -11987,8 +11996,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12106,8 +12115,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 831a5f57bb..812608b565 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -24,11 +23,11 @@ msgstr "" msgid "Show all" msgstr "" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "" @@ -40,36 +39,36 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +76,28 @@ msgstr "" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "" @@ -118,18 +117,18 @@ msgstr "" msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,18 +136,18 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +164,11 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +180,9 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +195,8 @@ msgstr "" msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +204,11 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +217,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +233,23 @@ msgstr "" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +261,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "" @@ -273,45 +272,45 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "" -#: db_operations.php:129 +#: db_operations.php:130 #, possible-php-format msgid "Database %1$s has been renamed to %2$s" msgstr "" -#: db_operations.php:133 +#: db_operations.php:134 #, possible-php-format msgid "Database %1$s has been copied to %2$s" msgstr "" -#: db_operations.php:256 +#: db_operations.php:260 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -321,14 +320,14 @@ msgstr "" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "" @@ -341,7 +340,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "" @@ -349,7 +348,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "" @@ -357,7 +356,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "" @@ -372,7 +371,7 @@ msgstr[1] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, possible-php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -404,9 +403,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -424,66 +423,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -499,12 +498,12 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -515,7 +514,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" @@ -524,160 +523,160 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, possible-php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, possible-php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, possible-php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, possible-php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -691,7 +690,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -700,7 +699,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -740,7 +739,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, possible-php-format msgid "Add %d column(s) to index" msgstr "" @@ -790,24 +789,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -817,24 +816,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "" @@ -854,7 +853,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -872,7 +871,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -914,13 +913,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -972,32 +971,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1011,11 +1010,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1036,12 +1035,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1134,7 +1133,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1214,7 +1213,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1304,8 +1303,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1516,12 +1515,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1577,8 +1576,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1677,7 +1676,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1774,63 +1773,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1868,32 +1867,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2006,16 +2005,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2032,7 +2031,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2055,14 +2054,14 @@ msgid "en" msgstr "" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2080,210 +2079,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2300,149 +2299,149 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, possible-php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, possible-php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, possible-php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, possible-php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, possible-php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "" @@ -2487,8 +2486,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2565,7 +2564,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2582,8 +2581,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2594,7 +2593,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" @@ -2605,7 +2604,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2615,8 +2614,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "" @@ -2654,51 +2653,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2707,66 +2706,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, possible-php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, possible-php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2775,12 +2774,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2848,18 +2847,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -2988,8 +2987,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -2999,11 +2998,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3011,60 +3010,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3137,14 +3136,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3387,7 +3386,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3401,12 +3400,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3508,7 +3507,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3646,22 +3645,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, possible-php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3926,7 +3925,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4035,7 +4034,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4071,7 +4070,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5503,10 +5502,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5756,52 +5755,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5931,8 +5938,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6006,69 +6013,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, possible-php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, possible-php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, possible-php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, possible-php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, possible-php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, possible-php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6144,71 +6151,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6399,8 +6406,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6415,123 +6422,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, possible-php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, possible-php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, possible-php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6575,7 +6582,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6862,7 +6869,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -6976,8 +6983,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7047,21 +7054,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, possible-php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7198,20 +7205,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7436,7 +7444,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7636,7 +7644,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7702,7 +7710,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7713,8 +7721,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7734,31 +7742,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7767,34 +7775,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7853,7 +7861,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8191,7 +8199,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8200,7 +8208,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8246,97 +8254,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8628,7 +8636,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8761,8 +8769,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8819,11 +8827,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8905,7 +8913,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, possible-php-format msgid "Table %s has been emptied" msgstr "" @@ -8918,12 +8926,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, possible-php-format msgid "Table %s has been dropped" msgstr "" @@ -8951,14 +8959,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8968,7 +8976,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -8992,7 +9000,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9000,7 +9008,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, possible-php-format msgid "Add %s column(s)" msgstr "" @@ -9023,15 +9031,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9039,15 +9047,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9093,15 +9101,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9128,18 +9136,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9147,33 +9155,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, possible-php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9347,7 +9355,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9622,29 +9630,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9652,31 +9660,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, possible-php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9744,49 +9752,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, possible-php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, possible-php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, 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:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9795,255 +9803,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, possible-php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10051,115 +10059,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, possible-php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, possible-php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, possible-php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10167,78 +10175,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10246,7 +10254,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10254,42 +10262,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10297,33 +10305,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10332,242 +10340,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10575,99 +10583,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10675,18 +10683,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10694,61 +10702,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10757,7 +10765,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10765,18 +10773,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10784,11 +10792,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10796,86 +10804,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, possible-php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, possible-php-format msgid "%d minute" msgid_plural "%d minutes" @@ -10991,19 +10999,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11287,42 +11295,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, possible-php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11453,16 +11461,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, possible-php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11621,38 +11629,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, possible-php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, possible-php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, possible-php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" diff --git a/po/pl.po b/po/pl.po index da6609f7e5..1c6a4ffcfd 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-15 21:19+0200\n" "Last-Translator: Jakub Drozdek \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: Weblate 1.2\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Numer strony:" @@ -41,36 +41,36 @@ msgstr "" "zostało zamknięte, lub ustawienia zabezpieczeń przeglądarki są " "skonfigurowane na blokowanie aktualizacji między oknami." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Szukaj" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Szukaj" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Wykonaj" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nazwa klucza" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Użyj tej wartości" @@ -121,18 +121,18 @@ msgstr "Baza danych %1$s została utworzona." msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -140,18 +140,18 @@ msgstr "Komentarze tabeli" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolumna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -168,11 +168,11 @@ msgstr "Kolumna" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -184,9 +184,9 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -199,8 +199,8 @@ msgstr "Null" msgid "Default" msgstr "Ustawienia domyślne" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -208,11 +208,11 @@ msgstr "Ustawienia domyślne" msgid "Links to" msgstr "Odsyłacze do" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -221,12 +221,12 @@ msgstr "Odsyłacze do" msgid "Comments" msgstr "Komentarze" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -237,23 +237,23 @@ msgstr "Komentarze" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -265,8 +265,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Tak" @@ -276,33 +276,33 @@ msgid "View dump (schema) of database" msgstr "Zobacz zrzut (schemat) bazy danych" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Zaznacz wszystkie" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Odznacz wszystko" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Nazwę bazy danych %1$s zmieniono na %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza danych %1$s została przekopiowana do %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -311,12 +311,12 @@ msgstr "" "Przechowywanie konfiguracji phpMyAdmin została wyłączona. Aby dowiedzieć " "się, dlaczego kliknij %stutaj%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rekordy" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Rozmiar" @@ -346,7 +346,7 @@ msgstr "w użyciu" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Data utworzenia" @@ -354,7 +354,7 @@ msgstr "Data utworzenia" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Ostatnia aktualizacja" @@ -362,7 +362,7 @@ msgstr "Ostatnia aktualizacja" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Ostatnie sprawdzanie" @@ -378,7 +378,7 @@ msgstr[2] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Musisz wybrać co najmniej jedną kolumnę do wyświetlenia" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Przełącz do %svisual builder%s" @@ -410,9 +410,9 @@ msgstr "Tabele śledzone" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza danych" @@ -430,66 +430,66 @@ msgstr "Zaktualizowana" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Działanie" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Pokaż" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Usuń dane śledzące tę tabelę" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Usuń" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktywny" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "nie aktywny" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Wersje" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Raport śledzenia" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Migawka struktury" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabele nieśledzone" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Śledź tabelę" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Dziennik bazy danych" @@ -505,12 +505,12 @@ msgstr "Wybrany typ eksportu musi być zapisany do pliku!" msgid "Bad parameters!" msgstr "Złe parametry!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Za mało miejsca na zapis pliku %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma uprawnień do zapisania tego pliku %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." @@ -532,117 +532,124 @@ msgstr "Zrzut został zapisany do pliku %s." msgid "Invalid export type" msgstr "Niepoprawny typ eksportu" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Wartość dla kolumny \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Dodaj punkt" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linia ciągu" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Pierścień zewnętrzny" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Pierścień wewnętrzny" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Dodaj linestring" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Dodaj pierścień wewnętrzny" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Wielokąt" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Dodaj wielokąt" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Dodaj geometrię" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Wyjście" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Wybierz \"GeomFromText\" z kolumny \"Function\" i wklej poniższy ciąg znaków " "do pola \"Value\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się " -"%sdokumentacją%s, aby obejść to ograniczenie." +"Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się %" +"sdokumentacją%s, aby obejść to ograniczenie." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Wyświetlanie zakładki" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Zakładka została usunięta." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Nie można odczytać pliku" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,7 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwaną kompresją (%s). Albo ten typ " "kompresji nie jest obsługiwany, albo jest wyłączony w konfiguracji." -#: import.php:400 +#: import.php:404 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 " @@ -662,27 +669,27 @@ msgstr "" "konfigurację PHP. Zobacz [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nie można przekonwertować zestawu znaków pliku bez biblioteki konwersji" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s utworzona" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -690,7 +697,7 @@ msgstr "" "Limit czasu wykonania skryptu minął. Aby ukończyć import, proszę ponownie " "przesłać ten sam plik, a import zostanie wznowiony." -#: import.php:513 +#: import.php:517 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." @@ -699,9 +706,9 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Zapytanie SQL zostało wykonane pomyślnie" @@ -717,7 +724,7 @@ msgstr "" "phpMyAdmin jest bardziej przyjazny w przeglądarkach WWW obsługujących " "ramki." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." @@ -726,7 +733,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." msgid "Do you really want to execute \"%s\"?" msgstr "Czy na pewno chcesz wykonać \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -766,7 +773,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Edytuj indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Dodaj %d kolumny do indeksu" @@ -816,24 +823,24 @@ msgstr "Zamknij" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edytuj" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Wykres ruchu w czasie rzeczywistym" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Wykres połączeń w czasie rzeczywistym /wykres procesów" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Wykres zapytań w czasie rzeczywistym" @@ -843,24 +850,24 @@ msgstr "Dane statyczne" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Ogółem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Inne" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -880,7 +887,7 @@ msgstr "Ruch na serwerze (w KiB)" msgid "Connections since last refresh" msgstr "Połączenia od czasu ostatniego odświeżenia" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesy" @@ -898,7 +905,7 @@ msgstr "Zapytania od czasu ostatniego odświeżenia" msgid "Questions (executed statements by the server)" msgstr "Zapytania (instrukcje wykonane przez serwer)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statystyki zapytań" @@ -944,13 +951,13 @@ msgstr "Systemowa przestrzeń wymiany" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1002,32 +1009,32 @@ msgstr "Bajty przesłane" msgid "Bytes received" msgstr "Bajty otrzymane" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Połączenia" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1041,11 +1048,11 @@ msgstr "%d tabeli(l)" msgid "Questions" msgstr "Pytania" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Ruch" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Ustawienia" @@ -1066,12 +1073,12 @@ msgid "Please add at least one variable to the series" msgstr "Proszę dodać przynajmniej jedną zmienną do serii" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Żaden" @@ -1171,7 +1178,7 @@ msgstr "Zmiana ustawień" msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Tytuł wykresu" @@ -1259,7 +1266,7 @@ msgstr "Wyjaśnij wynik przetworzenia danych" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Czas" @@ -1356,8 +1363,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1568,12 +1575,12 @@ msgstr "Czas wykonywania zapytania" msgid "%d is not valid row number." msgstr "%d nie jest prawidłowym numerem wiersza." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Zapisz" @@ -1633,8 +1640,8 @@ msgstr "Wyniki zapytania" msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoruj" @@ -1743,7 +1750,7 @@ msgstr "Pokaż dane wiersza(y)" msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generuj" @@ -1842,63 +1849,63 @@ msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Gru" @@ -1936,32 +1943,32 @@ msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sob" @@ -2078,16 +2085,16 @@ msgstr "" "Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono " "\"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "na sekundę" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "na minutę" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "na godzinę" @@ -2104,7 +2111,7 @@ msgstr "Maksymalny rozmiar: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacja" @@ -2127,14 +2134,14 @@ msgid "en" msgstr "ang." #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Błąd" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2152,210 +2159,210 @@ msgstr "Zapytanie SQL" msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Nie udało się połączyć z walidatorem SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Wyślij zapytanie" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Odśwież" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Weryfikacja SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Szybka edycja tego zapytania" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "W linii" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilowanie" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Nie" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Brakuje parametru:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Początek" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Poprzednie" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Następne" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Przejście do bazy danych "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Wstaw" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Przeglądaj" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacje" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Brak plików do wysłania" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Opróżnij" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Wykonaj" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Drukuj" @@ -2372,98 +2379,98 @@ msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!" msgid "Font size" msgstr "Rozmiar czcionki" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Rosnąco" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Malejąco" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortuj" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kryteria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Dodaj/usuń kryteria wierszy" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Dodaj/usuń kolumny" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Zaktualizuj zapytanie" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Użyj tabel" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Lub" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "I" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Wstaw" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Usuń" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Zmodyfikuj" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Zapytanie SQL do bazy danych %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "co najmniej jeden z wyrazów" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "wszystkie wyrazy" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "dokładna fraza" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "jako wyrażenie regularne" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Wyniki wyszukiwania dla \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2471,7 +2478,7 @@ msgstr[0] "Ogółem: %s dopasowania" msgstr[1] "Ogółem: %s dopasowania" msgstr[2] "Ogółem: %s dopasowania" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2481,44 +2488,44 @@ msgstr[0] "%1$s dopasowaie wewnątrz tabeli %2$s" msgstr[1] "%1$s dopasowania wewnątrz tabeli %2$s" msgstr[2] "%1$s dopasowań wewnątrz tabeli %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Usunąć dopasowania do tabeli %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Usuń" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Szukaj w bazie danych" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Wyrazy lub wartości do wyszukania (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Znajdź:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Wyrazy oddzielone są znakiem spacji (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Wewnątrz tabel:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Wewnątrz kolumny:" @@ -2564,8 +2571,8 @@ msgstr "Nagłówki co %s wierszy" msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2642,7 +2649,7 @@ msgid "The row has been deleted" msgstr "Wiersz został usunięty" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Zabij" @@ -2661,8 +2668,8 @@ msgstr "w zapytaniu" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." @@ -2675,7 +2682,7 @@ msgstr "Pokaż wiersze" msgid "total" msgstr "wszystkich" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" @@ -2686,7 +2693,7 @@ msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Z zaznaczonymi:" @@ -2696,8 +2703,8 @@ msgstr "Z zaznaczonymi:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Zaznacz wszystkie" @@ -2735,16 +2742,16 @@ msgstr "Łącze nie znalezione" msgid "Too many error messages, some are not displayed." msgstr "Zbyt wiele komunikatów o błędach, niektóre nie są wyświetlane." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Plik nie został przesłanym plikiem." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Przesłany plik przekracza dyrektywę upload_max_filesize w pliku php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2752,27 +2759,27 @@ msgstr "" "Przesłany plik przekracza dyrektywę MAX_FILE_SIZE, który został określony w " "formularzu HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Przesłany plik był tylko częściowo przesłany." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Brakuje folderu tymczasowego." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Nieznany błąd w przesyłania pliku." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2780,11 +2787,11 @@ msgstr "" "Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Błąd podczas przenoszenia plików na serwerze." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Nie można odczytać (przeniesiony) przesłanego pliku." @@ -2793,66 +2800,66 @@ msgstr "Nie można odczytać (przeniesiony) przesłanego pliku." msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript musi być włączona obok tego punktu" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Brak zdefiniowanego indeksu!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksy" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Moc" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Metoda porównywania napisów" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentarz" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Klucz podstawowy został usunięty" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Klucz %s został usunięty" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2863,12 +2870,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Bazy danych" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Serwer" @@ -2936,18 +2943,18 @@ msgstr "Użytkownicy" msgid "Synchronize" msgstr "Synchronizacja" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Dziennik binarny" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikacja" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Zmienne" @@ -3083,8 +3090,8 @@ msgstr "" "Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po " "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcja" @@ -3094,11 +3101,11 @@ msgstr "Funkcja" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Wartość" @@ -3106,62 +3113,62 @@ msgstr "Wartość" msgid "Table Search" msgstr "Tabela szukania" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Edycja/Wstaw" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Wybierz kolumny (przynajmniej jedną):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj warunki przeszukiwania (warunek dla \"WHERE\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Liczba wierszy na stronie" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Kolejność wyświetlania:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "W tej kolumnie oznacz każdy punkt" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maksymalna liczba wierszy do wykreślenia" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Dodatkowe kryteria wyszukiwania" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Wykonaj \"zapytanie wg przykładu\" (symbol wieloznaczny \"%\") dla dwóch " "różnych kolumn" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Przeglądaj/Edytuj punkty" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Jak korzystać" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3251,16 +3258,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Małe wartości zmiennoprzecinkowych numer, dopuszczalne są - 3.402823466E 38 " "do - 1.175494351E-38, 0 i 1.175494351E-38 do 3.402823466E 38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Podwójnej precyzji numer, dopuszczalne wartości zmiennoprzecinkowych są - " @@ -3552,7 +3559,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabele" @@ -3566,12 +3573,12 @@ msgstr "Tabele" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dane" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Nadmiar" @@ -3678,7 +3685,7 @@ msgstr "Otwórz" msgid "Closed" msgstr "Zamknięte" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3816,22 +3823,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "To ustawienie jest wyłączone, nie będzie stosowane w konfiguracji" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Ustaw wartość: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Przywróć wartość domyślną" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Zezwól użytkownikom na zmianę tej wartości" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Resetuj" @@ -4123,7 +4130,7 @@ msgstr "Kodowanie znaków pliku" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4232,7 +4239,7 @@ msgstr "Etykieta klucza" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Typ MIME" @@ -4268,7 +4275,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Użyj cudzysłowów z nazwami tabel i kolumn" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Tryb zgodności SQL" @@ -5672,8 +5679,8 @@ msgstr "Szczegółowa nazwa serwera" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie " -"(wiersze)\";" +"Czy użytkownik powinien mieć wyświetlony przycisk \"pokaż wszystkie (wiersze)" +"\";" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -5862,10 +5869,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Wymaga włączenia walidatora SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6143,7 +6150,7 @@ msgstr "Brak rozszerzenia %s. Proszę sprawdzić konfigurację PHP." msgid "possible deep recursion attack" msgstr "możliwy głęboki atak rekurencji" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6151,48 +6158,56 @@ msgstr "" "Serwer nie odpowiada (lub gniazdo lokalnego serwera nie jest prawidłowo " "skonfigurowane)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Serwer nie odpowiada." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Szczegóły..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku " "konfiguracyjnym nie powiodło się." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Zmień hasło" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Brak hasła" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ponownie" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Sposób kodowania haseł" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Kompatybilny z MySQL-em 4.0" @@ -6322,13 +6337,13 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Wartość ta jest interpretowana za pomocą %1$sstrftime%2$s, dzięki czemu " "można używać wartości czsu formatowania. Dodatkowo po transformacji stanie " -"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w " -"%4$sFAQ%5$s." +"się: %3$s. Inne teksty będą przechowywane tak jak są. Zobacz szczegóły w %4" +"$sFAQ%5$s." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6403,7 +6418,7 @@ msgstr "miejsce na %1$s dla %2$s" msgid "authored on %1$s by %2$s" msgstr "autorem %1$s dla %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6413,33 +6428,33 @@ msgstr "" "dozwolony rozmiar, lub wystąpił znany błąd w przeglądarkach opartych o " "silnik Webkit (Safari, Google Chrome, Arora itp.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s z %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Importowanie pliku importu..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "O %MIN min. %SEC sek. pozostało." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "O %SEC sek. pozostało." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Plik jest przetwarzany. Proszę o cierpliwość." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6447,30 +6462,30 @@ msgstr "" "Prosimy o cierpliwość, plik jest przesyłany. Szczegółowe informacje na temat " "wysyłania nie są dostępne." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importowanie do bieżącego serwera" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importowanie do bazy danych \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Import do tabeli \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Plik do importu:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Plik może być skompresowany (%s) bądź nie." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6557,71 +6572,71 @@ msgstr "" "Wielkość pamięci bufora InnoDB używa do buforowania danych i indeksów swoich " "tabel." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Status InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Użycie rezerw buforowych" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "strony" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Strony puste" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Strony brudne" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Strony zawierające dane" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Strony do wymiecenia" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Strony używane" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Zablokowane strony" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktywność rezerw buforowych" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Żądania odczytu" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Żądania zapisu" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Pominięty odczyt" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Czekanie zapisu" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Pominięty odczyt w %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Czekanie zapisu w %" @@ -6855,8 +6870,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." @@ -6873,126 +6888,126 @@ msgstr "PrimeBase XT Blog wg Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Pokaż zawartość struktury klikając jej nazwę" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Idź do bazy danych: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Edytuj ustawienia dla %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Przejdź do tabeli: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Przejdź do widoku: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Ukryj" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binarne" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Ze względu na jego długość,
kolumna ta może nie być edytowalne" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "katalog przesyłania serwera web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do " "poruszania się w dowolnym miejscu" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7036,7 +7051,7 @@ msgstr "Dodaj prefiks tabeli" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Czy na pewno chcesz wykonać następującą kwerendę?" @@ -7323,7 +7338,7 @@ msgstr "Opcje tabeli" msgid "Rename table to" msgstr "Zmień nazwę tabeli na" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Mechanizm składowania" @@ -7437,8 +7452,8 @@ msgstr "Witamy w %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." @@ -7515,21 +7530,21 @@ msgstr "Błędny login/hasło. Odmowa dostępu." msgid "Can not find signon authentication script:" msgstr "Nie możesz znaleźć skrypt uwierzytelniania signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Plik %s nie zawiera żadnego identyfikatora klucza" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Uwierzytelnianie sprzętowe nie powiodło się" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Trwa uwierzytelnianie..." @@ -7666,20 +7681,21 @@ msgstr "Wyświetl typy MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Czas wygenerowania" @@ -7935,7 +7951,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Niewłaściwa suma kolumn w CSV w linii %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nazwa tabeli" @@ -8193,7 +8209,7 @@ msgstr "Tworzenie PDF-ów" msgid "Displaying Column Comments" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Sposób prezentacji danych" @@ -8266,7 +8282,7 @@ msgstr "Odznacz wszystkie" msgid "Slave configuration" msgstr "Konfiguracja serwera podrzędnego" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Zmień lub skonfiguruj ponownie serwer główny" @@ -8279,8 +8295,8 @@ msgstr "" "ID serwera. Jeśli tak nie jest, dodaj następującą linię w sekcji [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8300,15 +8316,15 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Zmienna" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID serwera" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8316,17 +8332,17 @@ msgstr "" "Tylko serwery podrzędne uruchomione z opcją --report-host=host_name są " "widoczne na tej liście." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Dowolny użytkownik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8335,27 +8351,27 @@ msgstr "Dowolny użytkownik" msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8364,7 +8380,7 @@ msgstr "" "Kiedy tabela Hosta jest używana, to pole jest ignorowane i wartość zapisana " "w tabeli hostów jest używana zamiast." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generuj hasło" @@ -8424,7 +8440,7 @@ msgstr "Szczegóły" msgid "Event name" msgstr "Nazwa zdarzenia" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Typ zdarzenia" @@ -8769,7 +8785,7 @@ msgstr "Nie znaleziono zdarzenia %1$s w bazie danych %2$s" msgid "There are no events to display." msgstr "Nie ma żadnych zdarzeń do wyświetlenia." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8778,7 +8794,7 @@ msgstr "Nie ma żadnych zdarzeń do wyświetlenia." msgid "The %s table doesn't exist!" msgstr "Tabela '%s' nie istnieje!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8824,91 +8840,91 @@ msgstr "Atrybuty" msgid "Extra" msgstr "Dodatkowo" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Utwórz nową stronę" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Nazwa strony" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatyczny układ oparty na" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "KLUCZ OBCY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Proszę wybrać stronę do edycji" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Wybierz stronę" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Wybierz tabele" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nazwy kolumn" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Wyświetl schemat relacyjny" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Wybierz typ eksportu relacyjnych" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Pokaż siatkę" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Pokaż kolor" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Pokaż wymiary tabel" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Wyświetl wszystkie tabele z taką samą szerokością" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Słownik danych" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Pokaż tylko klucze" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Orientacja pozioma" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Orientacja pionowa" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientacja" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Rozmiar papieru" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8916,7 +8932,7 @@ msgstr "" "Bieżąca strona ma odniesienia do tabel, które już nie istnieją. Czy chcesz " "usunąć te powiązania?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Przełączanie scratchboard" @@ -9221,7 +9237,7 @@ msgstr "Użytkownicy mają dostęp do \"%s\"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Użytkownik" @@ -9357,8 +9373,8 @@ msgstr "Omówienie użytkowników" 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, " @@ -9419,11 +9435,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Kolumny" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" @@ -9518,10 +9534,10 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" @@ -9534,12 +9550,12 @@ msgstr "Śledzenie jest aktywne." msgid "Tracking is not active." msgstr "Śledzenie nie jest aktywne." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Widok %s został usunięty" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" @@ -9567,14 +9583,14 @@ msgid "Column %s has been dropped" msgstr "Kolumna %s została upuszczona" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Podstawowy" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9584,7 +9600,7 @@ msgid "Spatial" msgstr "Przestrzenny" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Pełny tekst" @@ -9608,7 +9624,7 @@ msgstr "Widok relacyjny" msgid "Propose table structure" msgstr "Zaproponowanie struktury tabeli" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." @@ -9616,7 +9632,7 @@ msgstr "Musisz dodać co najmniej jedną kolumnę." msgid "Add column" msgstr "Dodaj kolumnę" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s kolumnę(y)" @@ -9639,15 +9655,15 @@ msgstr "Po %s" msgid "Create an index on  %s columns" msgstr "Utwórz indeks na kolumnach %s" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statystyka wiersza" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statycznie" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamiczny" @@ -9655,15 +9671,15 @@ msgstr "dynamiczny" msgid "partitioned" msgstr "partycjonowanie" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Długość wiersza" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Rozmiar wiersza" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Następny autoindeks" @@ -9709,15 +9725,15 @@ msgstr "Dodaj indeks przestrzenny" msgid "Add FULLTEXT index" msgstr "Dodaj FULLTEXT indeksu" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informacje" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektywne" @@ -9751,20 +9767,20 @@ msgstr "" msgid "Move column" msgstr "Przenieść kolumnę" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " -"%sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" +"sopisy transformacji%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Opcje transformacji" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9776,33 +9792,33 @@ msgstr "" "apostrof (\"'\"), należy je poprzedzić odwrotnym ukośnikiem (np.: '\\\\xyz' " "lub 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Dane dla ENUM lub SET zbyt długie?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Więcej miejsca dla edycji" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Brak" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "pierwszy" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definicja partycji" @@ -10006,10 +10022,10 @@ 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:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Brak baz danych" @@ -10289,29 +10305,29 @@ msgstr "Plik nie istnieje" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Pliki" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nazwa dziennika" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozycja" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Oryginalna pozycja" @@ -10319,7 +10335,7 @@ msgstr "Oryginalna pozycja" msgid "Character Sets and Collations" msgstr "Kodowania znaków i metody porównywania" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -10327,24 +10343,24 @@ msgstr[0] "%1$d baza danych została pomyślnie usunięta." msgstr[1] "%1$d bazy danych zostały pomyślnie usunięte." msgstr[2] "%1$d baz danych zostało pomyślnie usuniętych." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statystyki baz danych" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replikacja serwera głównego" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replikacja serwera podrzędnego" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Włącz statystyki" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10414,40 +10430,40 @@ msgstr "Uprawnienia były przeładowane pomyślnie." msgid "Unknown error" msgstr "Nieznany błąd" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Nie można połączyć się z serwerem głównym %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nie można odczytać pozycji dziennika głównego. Możliwy problem uprawnień na " "serwerze głównym." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Nie można zmienić serwera głównego" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Serwer główny zmieniony pomyślnie na %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Pokaż stan serwera głównego" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Pokaż połączone serwery podrzędne" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10456,11 +10472,11 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako główny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Konfiguracja serwera głównego" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10474,19 +10490,19 @@ msgstr "" "wybrać do ignorowania wszystkie bazy danych domyślnie i pozwala jedynie na " "niektóre bazy danych które mają być replikowane. Wybierz tryb:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replikuj wszystkie bazy danych; Pomiń:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Pomiń wszystkie bazy danych; Replikuj:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Wybierz bazy danych:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10494,7 +10510,7 @@ msgstr "" "Teraz dodaj następujące wiersze na końcu pliku my.cnf a następnie zrestartuj " "serwer MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10503,83 +10519,83 @@ msgstr "" "Gdy zrestartowałeś już serwer MySQL kliknij przycisk Go. Powinieneś zobaczyć " "komunikat informujący, że serwer jest skonfigurowany jako główny" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Wątek SQL serwera podrzędnego nie uruchomiony!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Wątek IO serwera podrzędnego nie uruchomiony!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serwer jest skonfigurowany jako podrzędny w procesie replikacji. Czy chesz:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Zobacz status tabeli serwera podrzędnego" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synchronizacja baz danych z serwera głównego" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontrola serwera podrzędnego:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Pełny start" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Pełne zatrzymanie" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Zrestartuj serwer podrzędny" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Tylko początek wątku SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Tylko zatrzymaj wątek SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Tylko początek IO wątku" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Zatrzymaj tylko wątek IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Błąd zarządzania:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Włącznie \"omijania błędów\" może powodować rozsynchronizowanie serwera " "master i slave!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Pomiń bieżący błąd" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Pomiń następny" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "błędy." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10588,12 +10604,12 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie zabity." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10601,121 +10617,121 @@ msgstr "" "phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już " "zamknięty." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Obsługa" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Pamięć podręczna zapytań" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Wątki" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dane tymczasowe" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Opóźnione dodania" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Bufor klucza" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Złączenia" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortowanie" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordynator transakcji" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Przeładuj (zamknij) wszystkie tabele" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Pokaż otwarte tabele" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Status serwera podrzędnego" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Opróżnij bufor podręczny zapytań" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informacje o działaniu serwera" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Wszystkie zmienne stanu" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitor" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Doradca" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Liczba wierszy:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Częstotliwość odświeżania: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtry" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Zawierające słowo:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Pokaż tylko wartości alarmowe" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "&Filtruj wg kategorii..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Pokaż niesformatowane wartości" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Powiązane linki:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Analizuj" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instrukcje" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10723,7 +10739,7 @@ msgstr "" "System Doradcy może dostarczyć zalecenia dotyczące zmiennych serwera poprzez " "analizę zmiennych stanu serwera." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10733,7 +10749,7 @@ msgstr "" "obliczeniach i zasadach, które nie mogą mieć obowiązkowego zastosowania do " "systemu." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10743,7 +10759,7 @@ msgstr "" "(poprzez czytanie dokumentacji) i jak cofnąć zmiany. Złe ustawienia mogą " "mieć bardzo negatywny wpływ na wydajność." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10754,31 +10770,31 @@ msgstr "" "zmianę, gdyby nie było jednoznacznego wymiernego postępu." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Pytania od uruchomienia: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Oświadczenia" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Ruch sieciowy od uruchomienia: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ten serwer MySQL działa już od: %1$s. Uruchomiony został o: %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10786,19 +10802,19 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako główny i podrzędny w " "procesie replikacji." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Ten serwer MySQL jest ustawiony jako master i slave w procesie " "replikacji." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Ten serwer MySQL jest pracuje jako główny i podrzędny w " "procesie replikacji." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10806,11 +10822,11 @@ msgstr "" "Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10818,35 +10834,35 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Otrzymane" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Wysłane" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "maks. równoczesnych połączeń" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Polecenie" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10854,11 +10870,11 @@ msgstr "" "Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " "poprawnego zamykania połączenia." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Liczba nieudanych prób połączenia się z serwerem MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10868,18 +10884,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Liczba transakcji, które używały pamięci podręcznej tymczasowego dziennika " "binarnego." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Liczba prób połączenia (udane lub nie) do serwera MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10891,11 +10907,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10903,7 +10919,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10911,7 +10927,7 @@ msgstr "" "Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10919,23 +10935,23 @@ msgstr "" "Liczba użytych wątków obsługujących INSERT DELAYED. Każda osobna tabela, na " "której wykonuje się INSERT DELAYED dostaje własny wątek." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Ile razy wiersz został usunięty z tabeli." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10945,7 +10961,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10955,7 +10971,7 @@ msgstr "" "sugeruje, że serwer wykonuje pełnych przeszukań indeksów; na przykład SELECT " "col1 FROM foo, przy założeniu, że col1 jest zindeksowane." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10963,7 +10979,7 @@ msgstr "" "Liczba żądań odczytu wiersza na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10973,7 +10989,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10981,7 +10997,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10993,7 +11009,7 @@ msgstr "" "sortowania rezultatu. Prawdopodobnie wykonano wiele zapytań wymagających " "przeszukania całej tabeli lub złączeń, które nie używają poprawnie indeksów." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11005,35 +11021,35 @@ msgstr "" "nie są poprawnie zindeksowane lub że zapytania nie są napisane w sposób " "pozwalający skorzystać z istniejących indeksów." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany wiersza w tabeli." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania wiersza do tabeli." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Liczba stron w puli bufora, których wymiecienia zażądano." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11043,7 +11059,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11056,11 +11072,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Całkowita wielkość puli bufora, w stronach." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11069,7 +11085,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11077,11 +11093,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11089,7 +11105,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11103,51 +11119,51 @@ msgstr "" "wskazuje liczbę wystąpień takich oczekiwań. Jeżeli rozmiar puli bufora był " "ustawiony właściwie, wartość ta powinna być mała." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11155,35 +11171,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11192,51 +11208,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad wiersza na które aktualnie się czeka." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad wierszy, w milisekundach." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę wiersza." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba wierszy usuniętych z tabel InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba wierszy dodanych do tabel InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Liczba wierszy odczytanych z tabel InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba wierszy zmienionych w tabelach InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11245,7 +11261,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11253,7 +11269,7 @@ msgstr "" "Liczba nieużywanych bloków w buforze podręcznym indeksów. Można użyć tej " "wartości do określenia jaka część bufora indeksów jest w użyciu." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11262,15 +11278,15 @@ msgstr "" "Liczba użytych bloków w buforze podręcznym indeksów. Ta wartość to próg, " "który wskazuje maksymalną liczbę kiedykolwiek jednocześnie użytych bloków." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Liczba żądań odczytu bloku z bufora podręcznego indeksów." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11281,7 +11297,7 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11289,21 +11305,21 @@ msgstr "" "Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " "odczytu do żądania odczytu (obliczona wartość)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Liczba żądań zapisów bloków indeksów to bufora podręcznego." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Liczba fizycznych zapisów bloków indeksów na dysk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Procent fizycznego zapisu w porównaniu do żądania zapisu (obliczona wartość)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11314,7 +11330,7 @@ msgstr "" "kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " "została opracowana jeszcze." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11322,11 +11338,11 @@ msgstr "" "Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " "został uruchomiony." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba wierszy oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11334,20 +11350,20 @@ msgstr "" "Liczba kiedykolwiek otwartych tabel. Jeśli ta wartość jest duża, " "prawdopodobnie wielkość pamięci podręcznej tabel jest zbyt mała." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Liczba otwartych strumieni (używanych głownie do rejestracji w dzienniku)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11357,19 +11373,19 @@ msgstr "" "na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " "polecenie FLUSH CACHE QUERY." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11382,7 +11398,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11390,19 +11406,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11410,13 +11426,13 @@ msgstr "" "Liczba złączeń nie używających indeksów. Wartość różna od 0 sugeruje " "staranne przyjrzenie się indeksom tabel." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Liczba złączeń w których użyto wyszukiwania zakresowego na pierwszej " "złączanej tabeli." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11425,7 +11441,7 @@ msgstr "" "dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11433,16 +11449,16 @@ msgstr "" "Liczba złączeń w których użyto zakresów w stosunku do pierwszej tabeli. " "(Nawet duża wartość nie ma kluczowego znaczenia.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Liczba złączeń, które przeszukały w pełni pierwszą tabelę." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Liczba tymczasowych tabel aktualnie otwartych przez podrzędny wątek SQL." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11450,26 +11466,26 @@ msgstr "" "Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "ON oznacza, że ten serwer jest podrzędny i jest podłączony go serwera " "głównego." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Liczba wątków, których utworzenie trwało dłużej niż slow_launch_time sekund." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Liczba zapytań, których wykonanie zajęło więcej niż long_query_time sekund." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11479,23 +11495,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Liczba posortowanych wierszy." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11507,7 +11523,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11517,11 +11533,11 @@ msgstr "" "może być wyliczony ze wzoru Threads_created/Connections. Kolor czerwony " "oznacza, że powinno się zwiększyć thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11533,47 +11549,47 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Cache wątku trafień (obliczona wartość)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Uruchom monitor" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instrukcje/Setup" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Gotowe przestawienie/edycji wykresów" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Dodaj wykres" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "przestawienie/edycji wykresów" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Częstotliwość odświeżania" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Kolumny wykresu" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Układ wykresu" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11581,15 +11597,15 @@ msgstr "" "Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " "Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Przywróć wartość domyślną" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instrukcje monitora" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11603,7 +11619,7 @@ msgstr "" "włączone. Należy jednak pamiętać, że general_log produkuje duże ilości " "danych i zwiększa obciążenie serwera nawet o 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11615,11 +11631,11 @@ msgstr "" "tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " "funkcji wykresów serwera jednak." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Korzystanie z monitora:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11629,7 +11645,7 @@ msgstr "" "odstępach czasu. Możesz dodawać wykresy i zmienić częstotliwość odświeżania " "w 'Ustawienia' lub usunąć wykres za pomocą ikony zębatki dla każdego wykresu." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11641,11 +11657,11 @@ msgstr "" "wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " "kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Proszę zwrócić uwagę:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11658,80 +11674,80 @@ msgstr "" "wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " "wymagane." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Ustawiony wykres" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Zmienna statusu(ów)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Wybierz serię:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Najczęściej monitorowany" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "lub wpisz nazwę zmiennej:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Wyświetl jako wartości różnicy" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Zastosuj dzielnik" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Dołącz urządzenia do wartości danych" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Dodaj tę serię" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Wyczyść serie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Seria na wykresie:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Statystyki Log" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Wybrany zakres czasu:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" "Wybierz z którego dziennika chcesz statystyki które mają być generowane." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Wyniki są pogrupowane według zapytania tekstu." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analizuj zapytanie" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11739,7 +11755,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekund" msgstr[2] "%d sekundę" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11859,19 +11875,19 @@ msgstr "" "Docelowa baza danych zostanie w całości zsynchronizowana ze źródłową. " "Źródłowa baza danych pozostanie niezmieniona." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Błędne ustawienie zmienne" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Zmienne i ustawienia serwera" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Wartość sesji" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Wartość globalna" @@ -12134,8 +12150,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"W przypadku korzystania z uwierzytelniania cookie i przechowywać " -"%sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " +"W przypadku korzystania z uwierzytelniania cookie i przechowywać %" +"sciasteczek logowania%s nie jest 0, %sWażności plików cookie%s logowania " "muszą być ustawione na wartość mniejsza lub równa jej." #: setup/lib/index.lib.php:310 @@ -12208,42 +12224,42 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne." msgid "Wrong data" msgstr "Nieprawidłowe dane" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Weryfikacje SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Wynik SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Wygenerowany przez" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Nazwa" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Kolumny przeniesiono pomyślnie." @@ -12374,17 +12390,17 @@ msgstr "Edytuj indeks" msgid "Index name:" msgstr "Nazwa indeksu :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" musi być nazwą jedynie klucza podstawowego!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Rodzaj indeksu :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj  %s kolumn do indeksu" @@ -12549,38 +12565,38 @@ msgstr "Eksportuj jako %s" msgid "Show versions" msgstr "Pokaż wersje" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktywuj śledzenie dla %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Dezaktywuj teraz" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Aktywuj śledzenie %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktywuj teraz" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Utwórz wersję %1$s dla %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Śledź te instrukcje definicji danych:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Śledź te instrukcje manipulowania danymi:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Utwórz wersję" @@ -12963,8 +12979,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Bieżący współczynnik wolnej pamięci pamięci podręcznej zapytań do " "całkowitego zapytania wielkości cache to %s%%. Powinno być powyżej 80%%" @@ -13120,8 +13136,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% wszelkiego rodzaju spowodować tabel tymczasowych, ta wartość ta powinna " "być niższa niż 10%%." @@ -13668,8 +13684,8 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej " -"1%%" +"%s%% wszystkich połączeń jest przerwana. Ta wartość ta powinna być poniżej 1%" +"%" #: libraries/advisory_rules.txt:399 msgid "Rate of aborted connections" diff --git a/po/pt.po b/po/pt.po index f020b284a4..6d76bf8cdd 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-22 06:32-0400\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-09-02 18:44+0200\n" "Last-Translator: Vitor Barbosa \n" -"Language-Team: Portuguese " -"\n" -"Language: pt\n" +"Language-Team: Portuguese \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Número da página:" @@ -40,36 +40,36 @@ msgstr "" "fechado a janela que a originou, ou as configurações de segurança do seu " "browser encontram-se definidas para não permitir actualizações entre janelas." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Pesquisar" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Pesquisar" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Executar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nome do Índice" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Usar este valor" @@ -120,18 +120,18 @@ msgstr "A base de dados %1$s foi criada." msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Comentários da tabela" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Coluna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Nulo" msgid "Default" msgstr "Omissão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Omissão" msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Não" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sim" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Ver o esquema da base de dados" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Selecciona Todas" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "O nome da base de dados está vazia!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "O nome da base de dados %1$s foi alterado para %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de dados %1$s foi copiada para %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "As configurações do phpMyAdmin para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %shere%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Registos" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Tamanho" @@ -345,7 +345,7 @@ msgstr "em uso" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Criação" @@ -353,7 +353,7 @@ msgstr "Criação" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Última actualização" @@ -361,7 +361,7 @@ msgstr "Última actualização" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Última Verificação" @@ -376,7 +376,7 @@ msgstr[1] "%s tabelas" msgid "You have to choose at least one column to display" msgstr "Tem que escolher pelo menos uma coluna para mostrar" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mudar para %sConstrutor Gráfico%s" @@ -408,9 +408,9 @@ msgstr "Tabelas em tracking" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Base de Dados" @@ -428,66 +428,66 @@ msgstr "Actualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Estado" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Acções" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostrar" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Apagar dados de tracking para esta tabela" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Elimina" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "activo" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "inactivo" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versões" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Relatório de tracking" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Snapshot da estrutura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabelas sem tracking" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tracking à tabela" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Log da Base de Dados" @@ -503,12 +503,12 @@ msgstr "O tipo de export seleccionado tem de ser gravado em ficheiro!" msgid "Bad parameters!" msgstr "Parâmetros inválidos!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." @@ -530,118 +530,125 @@ msgstr "O Dump foi gravado para o ficheiro %s." msgid "Invalid export type" msgstr "Tipo de exportação inválido" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para a coluna \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usar OpenStreetMaps como camada base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Ponto" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Ponto %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Adicionar um ponto" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Segmento de Reta" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Anel Exterior" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Anel Interior" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Adicionar um segmento de reta" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Adicionar um anel interior" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Adicionar um polígono" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Adicionar geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Escolhe \"GeomFromText\" da coluna \"Função\" e cola a linha de caracteres " "abaixo no campo \"Valor\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " "limite." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Marcador apagado com sucesso." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,7 @@ msgstr "" "suporte não se encontra implementado ou está desabilitado na sua " "configuração." -#: import.php:400 +#: import.php:404 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 " @@ -662,30 +669,30 @@ msgstr "" "sua configuração PHP. Veja [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter o conjunto de caracteres do ficheiro sem a biblioteca " "de conversão" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Não foi possível carregar os import plugins, por favor verifique a sua " "instalação!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import terminou com sucesso, %d queries executados." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -693,7 +700,7 @@ msgstr "" "Script timeout atingido, se pretender concluir o import, por favor volte a " "submeter o mesmo ficheiro que o import continuará." -#: import.php:513 +#: import.php:517 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." @@ -702,9 +709,9 @@ msgstr "" "significa que o phpMyAdmin não conseguirá terminar este import, sem que se " "incremente os tempos de limite de php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "O seu comando SQL foi executado com sucesso" @@ -720,7 +727,7 @@ msgstr "" "O phpMyAdmin torna-se mais agradável se usado num browser que suporte " "frames." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." @@ -729,7 +736,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -769,7 +776,7 @@ msgstr "Adicionar Índice" msgid "Edit Index" msgstr "Editar Índice" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Adiciona %d coluna(s) ao Índice" @@ -820,24 +827,24 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Gráfico de tráfego em direto" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Gráfico de ligações/processo ao vivo" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Gráfico de comandos em directo" @@ -847,24 +854,24 @@ msgstr "Dados estáticos" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Outros" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -884,7 +891,7 @@ msgstr "Tráfego do servidor (em KiB)" msgid "Connections since last refresh" msgstr "Ligações desde a última actualização" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processos" @@ -902,7 +909,7 @@ msgstr "Perguntas desde a ultima actualização" msgid "Questions (executed statements by the server)" msgstr "Perguntas (comandos executados pelo servidor)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Estatísticas de comandos" @@ -948,13 +955,13 @@ msgstr "Swap do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1006,32 +1013,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Ligações" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1045,11 +1052,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Perguntas" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Configurações" @@ -1070,12 +1077,12 @@ msgid "Please add at least one variable to the series" msgstr "Por favor adicione pelo menos uma variável à serie" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nenhum" @@ -1175,7 +1182,7 @@ msgstr "Modificar configurações" msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Titulo do gráfico" @@ -1264,7 +1271,7 @@ msgstr "Explicar SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tempo" @@ -1361,8 +1368,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1573,12 +1580,12 @@ msgstr "Tempo de execução da consulta" msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Guarda" @@ -1639,8 +1646,8 @@ msgstr "Resultado(s) das(s) consulta(s)" msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignora" @@ -1747,7 +1754,7 @@ msgstr "Mostrar registo(s)" msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Gerar" @@ -1846,63 +1853,63 @@ msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dez" @@ -1940,32 +1947,32 @@ msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2082,16 +2089,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "por hora" @@ -2108,7 +2115,7 @@ msgstr "Tamanho máximo: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentação" @@ -2131,14 +2138,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Erro" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Comando SQL" @@ -2156,210 +2163,210 @@ msgstr "Comando SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Falha ao ligar ao validador SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Executar Consulta" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Actualizar" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parâmetros em falta:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Insere" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Procurar" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operações" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Limpa" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimir" @@ -2378,105 +2385,105 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descendente" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordenação" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Critérios" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover Linhas de Critérios" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Adicionar/Remover Colunas" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Atualizar consulta" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Usar Tabelas" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ou" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "E" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Elim" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificar" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL na base de dados %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "todas as palavras" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "a frase exata" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "como expressão regular" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados para \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2485,44 +2492,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultado na tabela %2$s" msgstr[1] "%1$s resultados na tabela %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Apagar" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Pesquisar na Base de Dados" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) a pesquisar (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Procurar:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "As palavras são separadas pelo caracter espaço (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dentro de Tabela(s):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dentro da coluna:" @@ -2574,8 +2581,8 @@ msgstr "" msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2662,7 +2669,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Termina" @@ -2679,11 +2686,11 @@ msgstr "na pesquisa" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a " -"%sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a %" +"sdocumentação%s." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2693,7 +2700,7 @@ msgstr "Mostrando registos" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" @@ -2704,7 +2711,7 @@ msgstr "O Query demorou %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Com os seleccionados:" @@ -2714,8 +2721,8 @@ msgstr "Com os seleccionados:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Todos" @@ -2756,17 +2763,17 @@ msgstr "Link não encontrado" msgid "Too many error messages, some are not displayed." msgstr "Excesso de mensagens de erro, algumas não serão mostradas." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "O ficheiro não era carregável." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na directriz " "'upload_max_filesize' no ficheiro php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2774,27 +2781,27 @@ msgstr "" "O ficheiro enviado excede o tamanho definido na directriz 'MAX_FILE_SIZE' " "que foi definido no formulário HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro foi apenas parcialmente carregado." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Falha ao salvar o ficheiro para o disco." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Carregamento do ficheiro parado pela extensão." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Erro desconhecido no upload do ficheiro." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2802,11 +2809,11 @@ msgstr "" "Erro ao mover o arquivo carregado, veja [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Não pode ler (movido) arquivo carregado." @@ -2815,68 +2822,68 @@ msgstr "Não pode ler (movido) arquivo carregado." msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nenhum indíce definido!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Agrupamento (Collation)" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comentário" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "A chave primária foi eliminada" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "O Índice %s foi eliminado" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2886,12 +2893,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Base de Dados" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" @@ -2952,7 +2959,6 @@ msgid "Designer" msgstr "" #: libraries/Menu.class.php:464 -#| msgid "User" msgid "Users" msgstr "Utilizadores" @@ -2961,18 +2967,18 @@ msgstr "Utilizadores" msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Registo binário" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicação" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variáveis" @@ -3110,8 +3116,8 @@ msgstr "" "serão constantes quando recarregar esta página. Favor verifique se a " "estrutura da tabela foi alterada." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funções" @@ -3122,11 +3128,11 @@ msgstr "Funções" msgid "Operator" msgstr "Operações" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valor" @@ -3136,69 +3142,69 @@ msgstr "Valor" msgid "Table Search" msgstr "Pesquisar" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Insere" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccione os campos (no mínimo 1)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Número de registos por página" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordem de visualização:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Esconder critérios de buca" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "versão do PHP" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3273,14 +3279,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3533,7 +3539,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabelas" @@ -3547,12 +3553,12 @@ msgstr "Tabelas" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Suspenso" @@ -3664,7 +3670,7 @@ msgstr "Abrir" msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3807,22 +3813,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Esta configuração está desactivada, não será aplicada à sua configuração" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Definir valor: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaurar valor padrão" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permitir a todos os utilizadores alterarem este valor" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Limpa" @@ -4117,7 +4123,7 @@ msgstr "Configurar o Mapa de Caracteres do ficheiro" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formato" @@ -4143,7 +4149,6 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:249 #: libraries/config/messages.inc.php:256 #: libraries/plugins/import/ImportCsv.class.php:194 -#| msgid "Fields enclosed by" msgid "Columns enclosed by" msgstr "Campos delimitados por" @@ -4232,7 +4237,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4273,7 +4278,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Usar apóstrofes com os nomes das tabelas e campos" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5790,10 +5795,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6048,52 +6053,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Alterar a palavra-passe" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sem palavra-passe" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Confirma" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6248,8 +6261,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6339,71 +6352,71 @@ msgstr "Criar versão" msgid "authored on %1$s by %2$s" msgstr "Criar versão" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Não é possível fazer login no servidor MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Sem bases de dados" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Sem bases de dados" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6483,72 +6496,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Estado da InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "A tabela %s foi fechada" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6739,8 +6752,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6757,128 +6770,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Esconder" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Devido ao seu tamanho,
este campo pode não ser editável " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binário - não editar" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6926,7 +6939,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7219,7 +7232,7 @@ msgstr "Opções da tabela" msgid "Rename table to" msgstr "Renomeia a tabela para" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7343,11 +7356,11 @@ msgstr "Bemvindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" -"%2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" +"2$s pode ser utilizado para criar um." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7423,21 +7436,21 @@ msgstr "Utilizador ou Palavra-passe errada. Acesso Negado." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Arquivo %s não contém qualquer identificação de chave" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Falha na autenticação de hardware" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nenhuma chave de autenticação válida foi conectada" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "A Autenticar..." @@ -7600,20 +7613,21 @@ msgstr "MIME-types disponíveis" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Máquina" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Data de Criação" @@ -7855,7 +7869,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8063,7 +8077,7 @@ msgstr "Criação de PDFs" msgid "Displaying Column Comments" msgstr "Mostrando comentários das Colunas" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformação do navegador" @@ -8130,7 +8144,7 @@ msgstr "Nenhum" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8141,8 +8155,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8163,32 +8177,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variável" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Servidor" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Qualquer utilizador" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8197,34 +8211,34 @@ msgstr "Qualquer utilizador" msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8288,7 +8302,7 @@ msgstr "" msgid "Event name" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Tipo de Exportação" @@ -8675,7 +8689,7 @@ msgstr "Não foram encontradas tabelas na base de dados" msgid "There are no events to display." msgstr "Tabelas em tracking" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8685,7 +8699,7 @@ msgstr "Tabelas em tracking" msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8732,106 +8746,105 @@ msgstr "Atributos" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Criar uma Página nova" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Página número:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Layout automático" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relações internas" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Escolha uma Página para editar" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Seleccionar Tabelas" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Seleccionar Tabelas" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nome dos Campos" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Esquema relacional" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostrar grelha" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostrar côr" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostrar todas as tabelas com a mesma largura" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dicionario de dados" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Paisagem/ao baixo" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Retrato/Ao alto" -#: libraries/schema/User_Schema.class.php:451 -#| msgid "Creation" +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientação" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8847,7 +8860,6 @@ msgid "Unknown language: %1$s." msgstr "Língua desconhecida: %1$s." #: libraries/select_server.lib.php:37 libraries/select_server.lib.php:42 -#| msgid "Server" msgid "Current Server" msgstr "Servidor atual" @@ -9134,7 +9146,7 @@ msgstr "Utilizadores que tem acesso a "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Utilizador" @@ -9276,8 +9288,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 " @@ -9342,11 +9354,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -9442,7 +9454,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" @@ -9455,12 +9467,12 @@ msgstr "Detecção de Alterações está activa." msgid "Tracking is not active." msgstr "Detecção de Alterações está desactivada." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "A Vista %s foi eliminada" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" @@ -9491,14 +9503,14 @@ msgid "Column %s has been dropped" msgstr "A tabela %s foi eliminada" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primária" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Índice" @@ -9508,7 +9520,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Texto Completo" @@ -9536,7 +9548,7 @@ msgstr "Vista de Relação" msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9547,7 +9559,7 @@ msgstr "Tem que escolher pelo menos uma coluna para mostrar" msgid "Add column" msgstr "Adiciona novo campo" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" @@ -9571,15 +9583,15 @@ msgstr "Depois %s" msgid "Create an index on  %s columns" msgstr "Criar um índice com %s coluna(s)" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinâmico" @@ -9587,16 +9599,16 @@ msgstr "dinâmico" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 #, fuzzy msgid "Row length" msgstr "Comprimento de linha" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Tamanho dos registos" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9646,16 +9658,16 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "Informação de Login " -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Espaço ocupado" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Em uso" @@ -9695,7 +9707,7 @@ msgstr "" msgid "Move column" msgstr "Adicionar/Remover Campos" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9704,11 +9716,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:145 msgid "Transformation options" msgstr "Opções de tranformação" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9720,36 +9732,36 @@ msgstr "" "\") ou uma pelica (\"'\") no meio desses valores, faça-o backslashes (por " "exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nenhum" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9954,7 +9966,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases de dados" @@ -10265,30 +10277,30 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostrar queries completos" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10296,7 +10308,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10304,24 +10316,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "As Bases de Dados %s foram apagadas com sucesso." msgstr[1] "As Bases de Dados %s foram apagadas com sucesso." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Estatísticas das bases de dados" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activar Estatísticas" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10395,50 +10407,50 @@ msgstr "O privilégios foram recarregados com sucesso." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "O privilégios foram recarregados com sucesso." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10447,279 +10459,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Por favor seleccione uma base de dados" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Texto Completo" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Texto Completo" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Somente estrutura" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Somente estrutura" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Tipo de Query" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: server_status.php:628 +#: server_status.php:627 #, fuzzy msgid "Key cache" msgstr "Tipo de Query" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Mostra tabelas" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informação de Runtime" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "Número de registos por página" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy msgid "Refresh rate: " msgstr "Gerado por" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Qtd Campos" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mantendo a palavra-passe " -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Mostra tabelas" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Mostra tabelas" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tipo de Query" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funções" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10727,118 +10739,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Itens" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Recebido" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Enviado" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Comando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Limits the number of new connections the user may open per hour." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10846,78 +10858,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10925,7 +10937,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10933,42 +10945,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10976,33 +10988,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11011,243 +11023,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11255,99 +11267,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11355,18 +11367,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11374,68 +11386,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Detecção de Alterações está desactivada." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy msgid "Start Monitor" msgstr "Estado" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "Adiciona novo campo" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11444,7 +11456,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11452,18 +11464,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11471,11 +11483,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11483,90 +11495,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover a Base de Dados" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Seleccionar Tabelas" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Acrescenta um utilizador" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "Comando SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Estatísticas dos registos" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Seleccionar Tabelas" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de Query" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11574,7 +11586,7 @@ msgid_plural "%d seconds" msgstr[0] "por segundo" msgstr[1] "por segundo" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11695,19 +11707,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variáveis do servidor e configurações" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valor de sessão" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valor Global" @@ -12000,44 +12012,44 @@ msgstr "" msgid "Wrong data" msgstr "Sem bases de dados" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12192,18 +12204,18 @@ msgstr "Vista de impressão" msgid "Index name:" msgstr "Nome do Índice :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipo de Índice :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" @@ -12375,40 +12387,40 @@ msgstr "Tipo de Exportação" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Criar versão" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Criar versão" @@ -12776,8 +12788,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12907,8 +12919,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/pt_BR.po b/po/pt_BR.po index e2890f7116..c18e3590ad 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -1,17 +1,17 @@ # msgid "" msgstr "" -"Project-Id-Version: phpMyAdmin 3.5.3-dev\n" +"Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-09-01 02:03-0300\n" "Last-Translator: Rafael Ferreira \n" -"Language-Team: Portuguese (Brazil) " -"\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Número da página:" @@ -40,36 +40,36 @@ msgstr "" "fechado a janela principal ou as opções de segurança do seu navegador estão " "configuradas para bloquear a comunicação entre janelas." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Procurar" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Procurar" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Executar" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nome da chave" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Usar este valor" @@ -108,8 +108,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"O arquivo %s não está disponível no sistema, por favor visite " -"www.phpmyadmin.net para mais informações." +"O arquivo %s não está disponível no sistema, por favor visite www.phpmyadmin." +"net para mais informações." #: db_create.php:74 #, php-format @@ -120,18 +120,18 @@ msgstr "Banco de dados %1$s foi criado." msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Comentários da tabela" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Coluna" msgid "Type" msgstr "Tipo" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tipo" msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Nulo" msgid "Default" msgstr "Padrão" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Padrão" msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Links para" msgid "Comments" msgstr "Comentários" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Comentários" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Não" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Não" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Sim" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Ver o esquema do Banco de Dados" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no banco de dados." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Selecionar Todos" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Banco de Dados %1$s foi renomeado para %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Banco de Dados %1$s foi copiado para %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Registros" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Tamanho" @@ -345,7 +345,7 @@ msgstr "em uso" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Criação" @@ -353,7 +353,7 @@ msgstr "Criação" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Última atualização" @@ -361,7 +361,7 @@ msgstr "Última atualização" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Última verificação" @@ -376,7 +376,7 @@ msgstr[1] "%s tabelas" msgid "You have to choose at least one column to display" msgstr "Você deve escolher pelo menos uma coluna para exibir" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alterar para %sconstrutor visual%s" @@ -408,9 +408,9 @@ msgstr "Tabelas rastreadas" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Banco de Dados" @@ -428,66 +428,66 @@ msgstr "Atualizado" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Ação" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Mostrar" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Excluir dados de monitoramento desta tabela" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "ativo" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "inativo" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versões" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Preview da estrutura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Tabelas não monitoradas" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Monitorar tabela" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Registro de log do Banco de Dados" @@ -503,12 +503,12 @@ msgstr "Tipo de exportação selecionada tem que ser salvo no arquivo!" msgid "Bad parameters!" msgstr "Parâmetros incorretos!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." @@ -530,117 +530,124 @@ msgstr "Dump foi salvo no arquivo %s." msgid "Invalid export type" msgstr "Formato inválido para exportação" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valores do campo \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps como base" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Ponto" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Ponto %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Adicione um ponto" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linha" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Anel Externo" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Anel interno" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Adicionar uma linha" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Adicionar um anel interno" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Adicionar polígono" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Adicionar Geometria" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -"Selecione \"GeomFromText\" no campo \"Function\" e cole a string abaixo no campo " -"\"Value\"" +"Selecione \"GeomFromText\" no campo \"Function\" e cole a string abaixo no " +"campo \"Value\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "O arquivo não pode ser lido" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -650,7 +657,7 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: import.php:400 +#: import.php:404 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 " @@ -658,31 +665,31 @@ msgid "" msgstr "" "Nenhum dado foi recebido na importação. Ou nenhum nome de arquivo foi " "submetido, ou o tamanho do arquivo excedeu o tamanho máximo permitido pela " -"sua configuração do PHP. Verifique a " -"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." +"sua configuração do PHP. Verifique a [a@./Documentation." +"html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter conjunto de caracteres deste arquivo sem a biblioteca " "de conversão" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -690,7 +697,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:513 +#: import.php:517 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." @@ -699,9 +706,9 @@ msgstr "" "que o phpMyAdmin não é capaz de finalizar essa importação à menos que você " "aumente o tempo limite do PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Seu comando SQL foi executado com sucesso" @@ -716,7 +723,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." @@ -725,7 +732,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR um banco de dados completo!" @@ -765,7 +772,7 @@ msgstr "Adicionar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Adicionar %d coluna(s) ao índice" @@ -815,24 +822,24 @@ msgstr "Fechar" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Gráfico de tráfego em tempo real" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Quadro conn./process em tempo real" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Gráfico de consulta em tempo real" @@ -842,24 +849,24 @@ msgstr "Dado(s) estático(s)" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -879,7 +886,7 @@ msgstr "Tráfego do Servidor (em KiB)" msgid "Connections since last refresh" msgstr "Conexões desde a última atualização" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processos" @@ -897,7 +904,7 @@ msgstr "Requisições desde a última atualização" msgid "Questions (executed statements by the server)" msgstr "Requisições (Declarações executadas pelo servidor)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Estatísticas de Consultas" @@ -943,13 +950,13 @@ msgstr "Área de Troca (Swap) do sistema" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1001,32 +1008,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes Recebidos" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Conexões" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1040,11 +1047,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Requisições" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Configurações" @@ -1071,12 +1078,12 @@ msgid "Please add at least one variable to the series" msgstr "Por favor adicione no mínimo uma variável à série" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nenhum" @@ -1166,8 +1173,8 @@ msgid "" "database administrator." msgstr "" "Você não tem permissão para alterar essas variáveis. Por favor, autentique-" -"se como usuário \"Root\" ou entre em contato com seu administrador do banco de " -"dados." +"se como usuário \"Root\" ou entre em contato com seu administrador do banco " +"de dados." #: js/messages.php:161 msgid "Change settings" @@ -1180,7 +1187,7 @@ msgstr "Configurações atuais" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Título do Relatório/Gráfico ou Tabela" @@ -1267,7 +1274,7 @@ msgstr "Demonstrar saída" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tempo" @@ -1312,7 +1319,8 @@ msgstr "Filtrar consultas por palavra/expressão regular:" #: js/messages.php:199 msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "Consultas em grupo, ignorando os valores de variáveis da cláusula WHERE" +msgstr "" +"Consultas em grupo, ignorando os valores de variáveis da cláusula WHERE" #: js/messages.php:200 msgid "Sum of grouped rows:" @@ -1364,8 +1372,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1577,12 +1585,12 @@ msgstr "Tempo de execução da busca" msgid "%d is not valid row number." msgstr "%d não é um número de linha válido." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Salvar" @@ -1617,8 +1625,7 @@ msgstr "Clique no botão resetar zoom para voltar ao estado original" #: js/messages.php:308 msgid "Click a data point to view and possibly edit the data row." msgstr "" -"Clique em um ponto de dados para ver e possivelmente editar a linha de " -"dados." +"Clique em um ponto de dados para ver e possivelmente editar a linha de dados." #: js/messages.php:310 msgid "The plot can be resized by dragging it along the bottom right corner." @@ -1642,8 +1649,8 @@ msgstr "Resultado(s) da(s) consulta(s)" msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorar" @@ -1676,8 +1683,8 @@ msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -"Você não salvou as mudanças no layout. Eles serão perdidos se você não " -"salva-los. Deseja continuar mesmo assim?" +"Você não salvou as mudanças no layout. Eles serão perdidos se você não salva-" +"los. Deseja continuar mesmo assim?" #: js/messages.php:344 msgid "Add an option for column " @@ -1753,7 +1760,7 @@ msgstr "Mostrar linha(s)" msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Gerar" @@ -1852,63 +1859,63 @@ msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dez" @@ -1946,32 +1953,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sab" @@ -2088,16 +2095,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "por hora" @@ -2114,7 +2121,7 @@ msgstr "Tamanho máximo: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentação" @@ -2137,14 +2144,14 @@ msgid "en" msgstr "ing" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Erro" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "consulta SQL" @@ -2162,210 +2169,211 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Falha ao conectar ao validador SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Enviar consulta SQL" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Atualizar" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Na linha de edição da presente consulta" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Perfil" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %T" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Parâmetros perdidos:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Estrutura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserir" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Visualizar" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operações" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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" +msgstr "" +"O diretório que você especificou para subir arquivos não foi encontrado" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Limpar" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Executar" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Imprimir" @@ -2384,105 +2392,105 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descendente" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Ordenar" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Critério" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover critérios de linha" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Adicionar/Remover colunas" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Atualizar a consulta SQL" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Usar tabelas" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ou" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "E" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Inserir" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Deletar" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificar" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL ao Banco de Dados %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "todas as palavras" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "a frase exata" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "como expressão regular" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados da pesquisa para \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" @@ -2491,44 +2499,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s resultado dentro da tabela %2$s" msgstr[1] "%1$s resultados dentro da tabela %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Remover" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Procurar no Banco de Dados" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Encontrar:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Palavras são separadas por um caracter de espaço (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Dentro da(s) tabela(s):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Dentro do campo:" @@ -2566,7 +2574,6 @@ msgstr "vertical" #: libraries/DisplayResults.class.php:940 #, php-format -#| msgid "Headers every %s rows" msgid "Headers every %s rows" msgstr "Cabeçalho a cada %s linhas" @@ -2574,8 +2581,8 @@ msgstr "Cabeçalho a cada %s linhas" msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2652,7 +2659,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Matar" @@ -2669,8 +2676,8 @@ msgstr "na consulta" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" "sdocumentação%s." @@ -2683,7 +2690,7 @@ msgstr "Mostrando registros" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" @@ -2694,7 +2701,7 @@ msgstr "Consulta levou %01.4f segundos" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Com marcados:" @@ -2704,8 +2711,8 @@ msgstr "Com marcados:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Marcar todos" @@ -2743,17 +2750,17 @@ msgstr "Link não encontrado" msgid "Too many error messages, some are not displayed." msgstr "Muitas mensagens de erro, algumas não exibidas." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Arquivo não era um arquivo carregado." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2761,39 +2768,39 @@ msgstr "" "O arquivo enviado excede o tamanho definido na diretriz MAX_FILE_SIZE que " "foi definido no formulário HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Carregamento do arquivo foi apenas parcial." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extenção." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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 " -"[a@./Documentation.html#faq1_11@Documentation]FAQ 1.11[/a]" +"Erro ao mover o arquivo carregado, veja [a@./Documentation." +"html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Não pode ler (mover) arquivo carregado." @@ -2802,66 +2809,66 @@ msgstr "Não pode ler (mover) arquivo carregado." msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript deve estar ativo após este ponto" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nenhum índice definido!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Índices" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Colação" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Cometário" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "A chave primária foi deletada" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Índice %s foi eliminado" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2872,12 +2879,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Banco de Dados" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" @@ -2945,18 +2952,18 @@ msgstr "Usuários" msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Log binário" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicação" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variáveis" @@ -3079,8 +3086,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Falha ao limpar as preferências da tabela UI (veja " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Falha ao limpar as preferências da tabela UI (veja $cfg['Servers'][$i]" +"['MaxTableUiprefs'] %s)" #: libraries/Table.class.php:1563 #, php-format @@ -3093,8 +3100,8 @@ msgstr "" "constantes depois que você recarregar esta página. Favor cheque se a " "estrutura da tabela foi alterada." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Função" @@ -3104,81 +3111,74 @@ msgstr "Função" msgid "Operator" msgstr "Operador" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valor" #: libraries/TableSearch.class.php:218 -#| msgid "Search" msgid "Table Search" msgstr "Pesquisa de tabela" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 -#| msgid "Insert" +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Inserir/Editar" -#: libraries/TableSearch.class.php:773 -#| msgid "Select fields (at least one):" +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Selecionar colunas (no mínimo 1):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de pesquisa (complemento da cláusula \"onde\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "registros por página" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordenado por:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: libraries/TableSearch.class.php:989 -#| msgid "Hide search criteria" +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Critérios de pesquisa adicionais" -#: libraries/TableSearch.class.php:1127 -#| msgid "Do a \"query by example\" (wildcard: \"%\")" +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Execute uma \"consulta por exemplo\" (coringa: \"%\") para duas colunas " "diferentes" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 -#| msgid "PHP extension to use" +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Como usar" -#: libraries/TableSearch.class.php:1193 -#| msgid "Reset" +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Restaurar zoom" @@ -3251,14 +3251,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3511,7 +3511,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabelas" @@ -3525,12 +3525,12 @@ msgstr "Tabelas" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Sobrecarga" @@ -3589,8 +3589,7 @@ msgstr "Índice de servidor inválido: \"%s\"" #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -"Nome de serivdor inválido para o servidor %1$s. Verifique suas " -"configurações." +"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." #: libraries/common.inc.php:851 msgid "Invalid authentication method set in configuration:" @@ -3638,7 +3637,7 @@ msgstr "Abrir" msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3774,24 +3773,25 @@ msgstr "Wiki" #: libraries/config/FormDisplay.tpl.php:221 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "Essa configuração está desativada, não será aplicado à sua configuração" +msgstr "" +"Essa configuração está desativada, não será aplicado à sua configuração" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Definir valor: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaurar valor padrão" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permitir a todos os usuários alterar esse valor" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Restaurar" @@ -3838,8 +3838,8 @@ msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" msgstr "" -"Frase secreta utilizada para encriptar cookies na autenticação por " -"[kbd]cookie[/kbd]" +"Frase secreta utilizada para encriptar cookies na autenticação por [kbd]" +"cookie[/kbd]" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" @@ -3880,8 +3880,8 @@ msgid "" "kbd] - allows newlines in columns" msgstr "" "Define que tipo de controles de edição devem ser utilizados pelas colunas " -"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, " -"[kbd]textarea[/kbd] - permite quebra de linhas em colunas" +"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, [kbd]" +"textarea[/kbd] - permite quebra de linhas em colunas" #: libraries/config/messages.inc.php:33 msgid "CHAR columns editing" @@ -4084,7 +4084,7 @@ msgstr "Conjunto de caracteres do arquivo" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formato" @@ -4193,7 +4193,7 @@ msgstr "Rótulo da chave" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME" @@ -4229,7 +4229,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Usar crases nos nomes de tabelas e campos" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Modo de compatibilidade SQL" @@ -4311,7 +4311,8 @@ msgstr "Ordem da caixa de seleção de chave estrangeira" #: libraries/config/messages.inc.php:156 msgid "A dropdown will be used if fewer items are present" -msgstr "Uma caixa de seleção será utilizada se poucos itens estiverem presentes" +msgstr "" +"Uma caixa de seleção será utilizada se poucos itens estiverem presentes" #: libraries/config/messages.inc.php:157 msgid "Foreign key limit" @@ -4451,9 +4452,9 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -"Especifica o texto da barra de título do browser. Remete a " -"[a@Documentation.html#cfg_TitleTable]documentação[/a] para strings mágicos " -"que podem ser usados para conseguir valores especiais." +"Especifica o texto da barra de título do browser. Remete a [a@Documentation." +"html#cfg_TitleTable]documentação[/a] para strings mágicos que podem ser " +"usados para conseguir valores especiais." #: libraries/config/messages.inc.php:198 #: libraries/navigation_header.inc.php:76 @@ -4516,8 +4517,8 @@ msgid "" "storage[/a] in documentation" msgstr "" "Configure as opções de armazenamento do phpMyAdmin para ter acesso às " -"funcionalidades adicionais, veja [a@Documentation.html#linked-" -"tables]Configuração de armazenamento do phpMyAdmin[/a] na documentação" +"funcionalidades adicionais, veja [a@Documentation.html#linked-tables]" +"Configuração de armazenamento do phpMyAdmin[/a] na documentação" #: libraries/config/messages.inc.php:210 msgid "Changes tracking" @@ -4577,10 +4578,9 @@ msgid "" msgstr "" "Se você quiser usar o serviço de validação SQL (SQL Validator), você deve " "estar ciente de que [strong]todas as instruções SQL são armazenadas de forma " -"anônima para fins " -"estatísticos[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL " -"Validator[/a], Copyright 2002 Upright Database Technology. Todos os direitos " -"reservados.[/em]" +"anônima para fins estatísticos[/strong].[br][em][a@http://sqlvalidator.mimer." +"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. " +"Todos os direitos reservados.[/em]" #: libraries/config/messages.inc.php:226 msgid "Startup" @@ -4798,7 +4798,8 @@ msgstr "Exibe banco de dados em uma árvore" #: libraries/config/messages.inc.php:286 msgid "Disable this if you want to see all databases at once" -msgstr "Desabilite este se você quer ver todos os bancos de dados imediatamente" +msgstr "" +"Desabilite este se você quer ver todos os bancos de dados imediatamente" #: libraries/config/messages.inc.php:287 msgid "Use light version" @@ -4846,7 +4847,8 @@ msgstr "Habilita destaque" #: libraries/config/messages.inc.php:297 msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "Número máximo de tabelas usadas recentemente; defina 0 para desabilitar" +msgstr "" +"Número máximo de tabelas usadas recentemente; defina 0 para desabilitar" #: libraries/config/messages.inc.php:298 msgid "Recently used tables" @@ -5077,9 +5079,9 @@ msgid "" "(lost by window close)." msgstr "" "Ative se você quiser usar o histórico de consultas baseado em banco de dados " -"(requer a configuração de armazenamento do phpMyAdmin). Se desativado, " -"serão utilizadas rotinas JS para exibir o histórico de consultas (que será " -"perdido se a janela for fechada)." +"(requer a configuração de armazenamento do phpMyAdmin). Se desativado, serão " +"utilizadas rotinas JS para exibir o histórico de consultas (que será perdido " +"se a janela for fechada)." #: libraries/config/messages.inc.php:344 msgid "Permanent query history" @@ -5120,8 +5122,7 @@ msgstr "Largura da janela de consultas" #: libraries/config/messages.inc.php:354 msgid "Select which functions will be used for character set conversion" msgstr "" -"Selecione quais funções serão usadas para conversão do conjunto de " -"caracteres" +"Selecione quais funções serão usadas para conversão do conjunto de caracteres" #: libraries/config/messages.inc.php:355 msgid "Recoding engine" @@ -5196,8 +5197,8 @@ msgid "" "swekey.conf)" msgstr "" "O caminho para o arquivo de configuração [a@http://swekey.com] autenticação " -"equipamento SweKey [/a] (não localizado na raiz do seu documento: sugestão: " -"/etc/swekey.conf)" +"equipamento SweKey [/a] (não localizado na raiz do seu documento: sugestão: /" +"etc/swekey.conf)" #: libraries/config/messages.inc.php:373 msgid "SweKey config file" @@ -5216,9 +5217,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -"Deixe em branco quando não há " -"[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] suporte, sugestão: " -"[kbd]pma_bookmark[/kbd]" +"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]" +"bookmark[/a] suporte, sugestão: [kbd]pma_bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" @@ -5262,8 +5262,8 @@ msgid "" "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" "Um usuário especial MySQL será configurado com permissões limitadas, mais " -"informações disponíveis em " -"[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" +"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" +"[/a]" #: libraries/config/messages.inc.php:386 msgid "Control user" @@ -5294,8 +5294,8 @@ msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -"Deixe em branco quando não há de Desenho, sugestão: " -"[kbd]pma_designer_coords[/kbd]" +"Deixe em branco quando não há de Desenho, sugestão: [kbd]pma_designer_coords" +"[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5383,10 +5383,10 @@ msgid "" "alphabetical order." msgstr "" "Voce pode usar coringas MySQL (% e _), use caractere de escape neles se você " -"deseja caractere literal, ex: use [kbd]'meu\\_db'[/kbd] e não " -"[kbd]'meu_db'[/kbd]. Usando esta opção você pode ordenar a lista de banco de " -"dados, apenas entre seus nomes em ordem e use [kbd]*[/kbd] no final para " -"exibir os restantes em ordem alfabética." +"deseja caractere literal, ex: use [kbd]'meu\\_db'[/kbd] e não [kbd]'meu_db'[/" +"kbd]. Usando esta opção você pode ordenar a lista de banco de dados, apenas " +"entre seus nomes em ordem e use [kbd]*[/kbd] no final para exibir os " +"restantes em ordem alfabética." #: libraries/config/messages.inc.php:409 msgid "Show only listed databases" @@ -5449,8 +5449,8 @@ msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -"Deixe em branco se não houver [a@http://wiki.phpmyadmin.net/pma/relation" -"]relation-links[/a] suporte, sugestão: [kbd]pma_relation[/kbd]" +"Deixe em branco se não houver [a@http://wiki.phpmyadmin.net/pma/relation]" +"relation-links[/a] suporte, sugestão: [kbd]pma_relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5500,8 +5500,8 @@ msgstr "Utilizar SSL" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"Deixe em branco se não houver suporte a esquema PDF, sugestão: " -"[kbd]pma_table_coords[/kbd]" +"Deixe em branco se não houver suporte a esquema PDF, sugestão: [kbd]" +"pma_table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -5630,8 +5630,8 @@ msgstr "Nome completo deste servidor" #: libraries/config/messages.inc.php:455 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -"Quando precisa ser exibido a um usuário o botão "exiba " -"todas(colunas)"" +"Quando precisa ser exibido a um usuário o botão "exiba todas(colunas)" +""" #: libraries/config/messages.inc.php:456 msgid "Allow to display all the rows" @@ -5643,10 +5643,9 @@ msgid "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -"Favor certificar-se que habilitando isto, não haverá efeito no " -"[kbd]config[/kbd] modo de autenticação porque a senha está bem feita no " -"arquivo de configuração; isto não limita a habilidade de executar o comando " -"diretamente" +"Favor certificar-se que habilitando isto, não haverá efeito no [kbd]config[/" +"kbd] modo de autenticação porque a senha está bem feita no arquivo de " +"configuração; isto não limita a habilidade de executar o comando diretamente" #: libraries/config/messages.inc.php:458 msgid "Show password change form" @@ -5727,8 +5726,8 @@ msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -"Exibe link para saída de " -"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]" +"Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]" +"phpinfo()[/a]" #: libraries/config/messages.inc.php:475 msgid "Show phpinfo() link" @@ -5750,8 +5749,7 @@ msgstr "Mostrar consultas SQL" msgid "" "Defines whether the query box should stay on-screen after its submission" msgstr "" -"Define se a caixa de consulta deve estar sobre a tela depois de sua " -"submissão" +"Define se a caixa de consulta deve estar sobre a tela depois de sua submissão" #: libraries/config/messages.inc.php:480 libraries/sql_query_form.lib.php:377 msgid "Retain query box" @@ -5786,9 +5784,9 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" "Ao definir este [kbd]aninhamento[/kbd], o alias da tabela é apenas usado " -"para dividir/aninhar as tabelas de acordo com a " -"$cfg['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo " -"alias, o nome da tabela continua inalterado" +"para dividir/aninhar as tabelas de acordo com a $cfg" +"['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo alias, " +"o nome da tabela continua inalterado" #: libraries/config/messages.inc.php:486 msgid "Display table comment instead of its name" @@ -5814,10 +5812,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Requer validador SQL para ser habilitado" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5853,8 +5851,7 @@ msgstr "Usuário" #: libraries/config/messages.inc.php:501 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -"Um aviso é mostrado na página principal se uma falha de segurança é " -"detectada" +"Um aviso é mostrado na página principal se uma falha de segurança é detectada" #: libraries/config/messages.inc.php:502 msgid "Suhosin warning" @@ -5914,8 +5911,8 @@ msgid "" msgstr "" "Insira os Proxies como [kbd]IP: Cabeçalho HTTP de confiança[/kbd]. O exemplo " "seguinte ilustra que o phpMyAdmin deve confiar no cabeçalho " -"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxie " -"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" +"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxie 1.2.3.4:[br][kbd]" +"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" #: libraries/config/messages.inc.php:516 msgid "List of trusted proxies for IP allow/deny" @@ -5924,8 +5921,7 @@ msgstr "Lista de proxies confiáveis ​​por IP permitir/negar" #: libraries/config/messages.inc.php:517 msgid "Directory on server where you can upload files for import" msgstr "" -"Diretório no servidor onde você pode fazer upload de arquivos para " -"importação" +"Diretório no servidor onde você pode fazer upload de arquivos para importação" #: libraries/config/messages.inc.php:518 msgid "Upload directory" @@ -5957,7 +5953,8 @@ msgstr "Verifique a última versão" #: libraries/config/messages.inc.php:524 msgid "Enables check for latest version on main phpMyAdmin page" -msgstr "Habilitar checagem pela última versão na página principal do phpMyAdmin" +msgstr "" +"Habilitar checagem pela última versão na página principal do phpMyAdmin" #: libraries/config/messages.inc.php:525 setup/lib/index.lib.php:132 #: setup/lib/index.lib.php:143 setup/lib/index.lib.php:164 @@ -5972,9 +5969,8 @@ msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -"Habilitar compressão " -"[a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] para operações de " -"importação e exportação" +"Habilitar compressão [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/" +"a] para operações de importação e exportação" #: libraries/config/messages.inc.php:527 msgid "ZIP" @@ -6092,7 +6088,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "possível ataque de recursão profunda" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6100,48 +6096,56 @@ msgstr "" "O servidor não está respondendo (ou o soquete do servidor local não está " "configurado corretamente)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "O servidor não está respondendo." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "Por favor verifique os privilégios do diretório que contém o banco de dados." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalhes..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Conexão para controle do usuário como definido nas configurações falhou." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Alterar a senha" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sem senha" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-digite" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hashing da senha" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatível com MySQL 4.0" @@ -6271,8 +6275,8 @@ msgstr ", @TABLE@ se tornará o 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. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -6354,7 +6358,7 @@ msgstr "Criar versão %s de %s.%s" msgid "authored on %1$s by %2$s" msgstr "Criar versão %s de %s.%s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6364,35 +6368,35 @@ msgstr "" "permitido, ou este é um bug conhecido em alguns browsers (Safari, Google " "Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Formato do arquivo importado" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Este arquivo está sendo processado, por favor seja paciente." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6400,36 +6404,36 @@ msgstr "" "Por favor, tenha paciência, o arquivo esta sendo enviado. Detalhes sobre o " "upload não estão disponíveis." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importar para o servidor atual" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importando para o banco de dados \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importando para a tabela \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Arquivo para importar:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Arquivo pode ser compactado (%s) ou descompactado." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" msgstr "" -"O nome de um arquivo compactado deve terminar em " -".[formato].[compactação]. Exemplo: .sql.zip" +"O nome de um arquivo compactado deve terminar em .[formato].[compactação]" +". Exemplo: .sql.zip" #: libraries/display_import.lib.php:244 msgid "File uploads are not allowed on this server." @@ -6512,71 +6516,71 @@ msgstr "" "O tamanho do buffer de memória que o InnoDB usa para dados do cache e " "índices nas suas tabelas." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "\"Buffer Pool\"" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Status do InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Uso do Buffer Pool" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Páginas livres" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Páginas sujas" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Páginas contendo dados" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Páginas para serem niveladas" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Página ocupadas" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Páginas trancadas" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Atividade do Buffer Pool" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Leitura requisitada" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Escrita requisitada" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Leitura falhou" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Escrever as esperas" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Leitura falhou em %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Escrita esperada em %" @@ -6809,8 +6813,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Documentação e mais informações sobre PBXT podem ser encontradas na %" "sPrimeBase XT Home Page%s." @@ -6827,130 +6831,129 @@ msgstr "O PrimeBase XT Blog por Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "As estruturas a seguir quer tenham sido criadas, ou alteradas. Aqui você " "pode:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Visualize o conteúdo da estrutura clicando neste nome" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Altere qualquer uma destas configurações clicando no link \"Opções\" " "correspondente" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Edite a estrutura seguindo o link \"Estrutura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Ir para bando de dados: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Editar configurações para %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Ir para tabela: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Estrutura do %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Vá para a visão: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 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" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format -#| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Continuar a inserção com %s linhas" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Exibir consulta insert" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Retornar" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Inserir novo registro" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Editar próximo registro" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -6994,7 +6997,7 @@ msgstr "Adicionar prefixo de tabela" msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to execute following query?" msgid "Do you really want to execute the following query?" @@ -7283,7 +7286,7 @@ msgstr "Opções da tabela" msgid "Rename table to" msgstr "Renomear a tabela para" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Mecanismo de armazenamento" @@ -7397,8 +7400,8 @@ msgstr "Bem vindo ao %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7476,21 +7479,21 @@ msgstr "Usuário ou senha incorreta. Acesso negado." msgid "Can not find signon authentication script:" msgstr "Não é possível encontrar o script de autenticação de logon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Arquivo %s não contém qualquer identificação da chave" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Falha na autenticação de hardware" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nenhuma chave de autenticação válida foi conectada" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autenticando..." @@ -7527,7 +7530,8 @@ msgstr "Substituir NULL com:" #: libraries/plugins/export/ExportCsv.class.php:114 #: libraries/plugins/export/ExportExcel.class.php:62 msgid "Remove carriage return/line feed characters within columns" -msgstr "Remover caracteres de retorno ou alimentação de linha dentro de colunas" +msgstr "" +"Remover caracteres de retorno ou alimentação de linha dentro de colunas" #: libraries/plugins/export/ExportExcel.class.php:77 msgid "Excel edition:" @@ -7627,20 +7631,21 @@ msgstr "Mostrar os MIME-type" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Tempo de Geração" @@ -7760,8 +7765,8 @@ msgid "" "(1,2,3)" msgstr "" "incluir nomes de columas em cada declaração INSERT
  " -"    Exemplo: INSERT INTO tbl_name (col_A,col_B,col_C) " -"VALUES (1,2,3)" +"    Exemplo: INSERT INTO tbl_name (col_A,col_B,col_C) VALUES " +"(1,2,3)" #: libraries/plugins/export/ExportSql.class.php:361 msgid "" @@ -7900,7 +7905,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Contador de campo inválido na linha %d da entrada CSV." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Nome da Tabela" @@ -7987,14 +7992,6 @@ msgid "" msgstr "" #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:31 -#| msgid "" -#| "ys a TIME, TIMESTAMP, DATETIME or numeric unix timestamp field as matted " -#| "e. The first option is the offset (in hours) which will be ed to the " -#| "estamp (Default: 0). Use second option to specify a ferent date/time mat " -#| "string. Third option determines whether you t to see local date or one " -#| "(use \"local\" or \"utc\" strings) for t. According to that, date mat has " -#| "different value - for \"local\" the documentation for PHP's ftime() " -#| "function and for \"utc\" it is e using gmdate() function." msgid "" "Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as " "formatted date. The first option is the offset (in hours) which will be " @@ -8010,9 +8007,9 @@ msgstr "" "ser adicionado ao timestamp (Padrão: 0). Use a segunda opção para " "especificar uma string de formatação date/time diferente. A terceira opção " "determina se você deseja ver data local ou UTC (use a string \"local\" ou " -"\"utc\") para isso. De acordo com isso, o formato date terá valores diferentes " -"- para \"local\" veja a documentação do PHP para função strftime() e para " -"\"utc\" isso é feito usando a função gmdate()." +"\"utc\") para isso. De acordo com isso, o formato date terá valores " +"diferentes - para \"local\" veja a documentação do PHP para função strftime" +"() e para \"utc\" isso é feito usando a função gmdate()." #: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31 msgid "" @@ -8068,8 +8065,8 @@ 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 "" -"Mostra o conteúdo da coluna como é, sem manipular através de " -"htmlspecialchars(). Isso é, a coluna assume conter somente HTML válido." +"Mostra o conteúdo da coluna como é, sem manipular através de htmlspecialchars" +"(). Isso é, a coluna assume conter somente HTML válido." #: libraries/plugins/transformations/abstract/HexTransformationsPlugin.class.php:31 msgid "" @@ -8135,8 +8132,8 @@ msgid "" "the link." msgstr "" "Mostra um link, o campo contém o nome do arquivo. A primeira opção é um " -"prefixo URL como \"http://www.exemplo.com/\". A segunda opção é um título para " -"o link." +"prefixo URL como \"http://www.exemplo.com/\". A segunda opção é um título " +"para o link." #: libraries/relation.lib.php:87 msgid "not OK" @@ -8170,7 +8167,7 @@ msgstr "Criação de PDFs" msgid "Displaying Column Comments" msgstr "Exibindo comentários da coluna" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformações do navegador" @@ -8178,7 +8175,8 @@ msgstr "Transformações do navegador" #: libraries/relation.lib.php:173 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" +msgstr "" +"Consulte a documentação sobre como atualizar sua tabela Column_comments" #: libraries/relation.lib.php:183 libraries/sql_query_form.lib.php:403 msgid "Bookmarked SQL query" @@ -8219,9 +8217,8 @@ msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -"Ativar recursos avançados no arquivo de configuração " -"(config.inc.php), por exemplo iniciando em " -"config.sample.inc.php." +"Ativar recursos avançados no arquivo de configuração (config.inc.php), por exemplo iniciando em config.sample.inc.php." #: libraries/relation.lib.php:278 msgid "Re-login to phpMyAdmin to load the updated configuration file." @@ -8242,7 +8239,7 @@ msgstr "Desmarcar todos" msgid "Slave configuration" msgstr "Configuração do escravo" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Alterar ou reconfigurar o servidor mestre" @@ -8256,8 +8253,8 @@ msgstr "" "seção [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8277,15 +8274,15 @@ msgid "Slave status" msgstr "Status dos secundários" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variáveis" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID do Servidor" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8293,17 +8290,17 @@ msgstr "" "Apenas os escravos iniciados com a opção --report-host=host_name estão " "visíveis nesta lista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Adicionar escravo de replicação de usuário" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Qualquer usuário" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8312,27 +8309,27 @@ msgstr "Qualquer usuário" msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8341,7 +8338,7 @@ msgstr "" "Quanto a tabela Host é usada, este campo é ignorado e os valores armazenados " "na tabela Host são usados no lugar." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Gerar Senha" @@ -8401,7 +8398,7 @@ msgstr "Detalhes" msgid "Event name" msgstr "Nome do evento" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tipo de evento" @@ -8750,7 +8747,7 @@ msgstr "Nenhum evento com o nome %1$s foi encontrado no banco de dados %2$s" msgid "There are no events to display." msgstr "Não existem eventos para serem mostrados." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8759,7 +8756,7 @@ msgstr "Não existem eventos para serem mostrados." msgid "The %s table doesn't exist!" msgstr "A tabela \"%s\" não existe!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8805,91 +8802,91 @@ msgstr "Atributos" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Criar uma nova página" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Numero da página" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Leiaute automático baseado em" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relações internas" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "CHAVE ESTRANGEIRA" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Escolha a página para editar" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Selecionar página" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Tabelas selecionadas" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Nome das colunas" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Selecione o Tipo de Exportação Relacional" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Mostrar grade" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Mostrar cor" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Mostrar todas as tabelas com o mesmo tamanho" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dicionário de dados" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Mostrar apenas chaves" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Paisagem" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Retrato" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientação" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8897,7 +8894,7 @@ msgstr "" "A Página atual contêm referências para uma tabela que não existe. Gostaria " "de eliminar estas referências?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "mudar o estado do Scratchboard" @@ -9201,7 +9198,7 @@ msgstr "Usuários que têm acesso à "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Usuário" @@ -9212,7 +9209,6 @@ msgid "Grant" msgstr "Conceder/Grant" #: libraries/server_privileges.lib.php:1630 -#| msgid "View %s has been dropped" msgid "User has been added." msgstr "Usuário foi adicionado." @@ -9235,7 +9231,6 @@ msgid "wildcard" msgstr "coringa" #: libraries/server_privileges.lib.php:1764 server_privileges.php:172 -#| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum usuário encontrado." @@ -9333,7 +9328,6 @@ msgid "Privileges for %s" msgstr "Privilégios" #: libraries/server_privileges.lib.php:2933 -#| msgid "User overview" msgid "Users overview" msgstr "Visão geral dos usuários" @@ -9342,8 +9336,8 @@ msgstr "Visão geral 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 " @@ -9401,15 +9395,14 @@ msgid "Clear" msgstr "Limpar" #: libraries/sql_query_form.lib.php:287 -#| msgid "Column names" msgid "Columns" msgstr "Colunas" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -9505,7 +9498,7 @@ msgstr "" "O Validador SQL não pode ser inicializado. Verifique se você instalou a " "extensão necessária do php conforme está escrito na %sdocumentação%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" @@ -9518,12 +9511,12 @@ msgstr "Rastreamento está ativo." msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" @@ -9549,19 +9542,18 @@ msgstr "Nenhum" #: libraries/structure.lib.php:1344 #, php-format -#| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Coluna %s foi eliminada" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primária" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Índice" @@ -9571,7 +9563,7 @@ msgid "Spatial" msgstr "Espacial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Texto completo" @@ -9586,7 +9578,6 @@ msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1476 -#| msgid "Print view" msgid "Edit view" msgstr "Editar view" @@ -9598,8 +9589,7 @@ msgstr "Ver relações" msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 -#| msgid "You have to add at least one field." +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos um campo." @@ -9607,9 +9597,8 @@ msgstr "Você deve adicionar pelo menos um campo." msgid "Add column" msgstr "Adicionar coluna" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format -#| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Adicionar campo(s) %s " @@ -9628,19 +9617,18 @@ msgstr "Depois %s" #: libraries/structure.lib.php:1624 #, php-format -#| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Criar um índice em  %s colunas" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "estático" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinâmico" @@ -9648,20 +9636,19 @@ msgstr "dinâmico" msgid "partitioned" msgstr "particionado" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Tamanho do registro" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Tamanho do registro" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" #: libraries/structure.lib.php:1905 -#| msgid "Show versions" msgid "Show more actions" msgstr "Exibir mais ações" @@ -9705,15 +9692,15 @@ msgstr "Adicionar índice SPATIAL" msgid "Add FULLTEXT index" msgstr "Adicionar índice FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informação" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Uso do espaço" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efetivo" @@ -9724,21 +9711,16 @@ msgid "Tracking of %s is activated." msgstr "Rastreamento está ativo." #: libraries/tbl_properties.inc.php:90 -#| msgid "" -#| "ld type is \"enum\" or \"set\", please enter the values using this " -#| "mat: ,'b','c'...
If you ever need to put a backslash (\"\\\") a " -#| "single te (\"'\") amongst those values, precede it with a kslash (for " -#| "example xyz' or 'a\\'b')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -"Se um tipo de campo é \"enum\" ou \"set\", por favor entre com valores usando " -"este formato: 'a','b','c'...
Se você mesmo precisar colocar uma barra " -"contrária (\"\\\") ou aspas simples (\"'\") entre esses valores, coloque uma " -"barra contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')." +"Se um tipo de campo é \"enum\" ou \"set\", por favor entre com valores " +"usando este formato: 'a','b','c'...
Se você mesmo precisar colocar uma " +"barra contrária (\"\\\") ou aspas simples (\"'\") entre esses valores, " +"coloque uma barra contrária antes (por exemplo '\\\\xyz' ou 'a\\'b')." #: libraries/tbl_properties.inc.php:91 msgid "" @@ -9754,7 +9736,7 @@ msgstr "" msgid "Move column" msgstr "Remover coluna(s)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9763,11 +9745,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:145 msgid "Transformation options" msgstr "Opções de transformação" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9775,49 +9757,46 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" "Digite os valores para as opções de transformação usando este formato: 'a', " -"100, b,'c'...
Se por acaso precisar inserir uma contra-barra (\"\\\") ou " -"aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra (por " -"exemplo '\\\\xyz' ou 'a\\'b')." +"100, b,'c'...
Se por acaso precisar inserir uma contra-barra (\"\\\") " +"ou aspas (\"'\") no meio desses valores, faça-o usando outra contra-barra " +"(por exemplo '\\\\xyz' ou 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM ou conjunto de dados muito grande?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Consiga mais espaço de edição" -#: libraries/tbl_properties.inc.php:400 -#| msgid "None" +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Nenhum, nada" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Como definido:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" #: libraries/user_preferences.inc.php:29 -#| msgid "General relation features" msgid "Manage your settings" msgstr "Gerencie suas configurações" #: libraries/user_preferences.inc.php:46 prefs_manage.php:300 -#| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modificações foram salvas" @@ -9828,11 +9807,10 @@ msgid "" "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" "Suas preferências serão salvas somente para a atual sessão. Armazená-las " -"permanentemente requer configuração no arquivo de configuração %sphpMyAdmin " -"%s." +"permanentemente requer configuração no arquivo de configuração %sphpMyAdmin %" +"s." #: libraries/user_preferences.lib.php:126 -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save configuration" msgstr "A configuração não pôde ser salva" @@ -9854,12 +9832,10 @@ msgid "Error in ZIP archive:" msgstr "Erro no arquivo ZIP:" #: main.php:76 -#| msgid "General relation features" msgid "General Settings" msgstr "Configurações gerais" #: main.php:121 -#| msgid "MySQL connection collation" msgid "Server connection collation" msgstr "Collation de conexão do servidor MySQL" @@ -9868,12 +9844,10 @@ msgid "Appearance Settings" msgstr "Configurações de aparência" #: main.php:176 prefs_manage.php:283 -#| msgid "General relation features" msgid "More settings" msgstr "Mais configurações" #: main.php:193 -#| msgid "Database for user" msgid "Database server" msgstr "Servidor de banco de dados" @@ -9882,7 +9856,6 @@ msgid "Software" msgstr "Programa" #: main.php:204 -#| msgid "Show versions" msgid "Software version" msgstr "Versão do programa" @@ -9891,7 +9864,6 @@ msgid "Protocol version" msgstr "Versão do Protocolo" #: main.php:217 -#| msgid "Server socket" msgid "Server charset" msgstr "Charset do servidor" @@ -9916,7 +9888,6 @@ msgid "Official Homepage" msgstr "Página Oficial do phpMyAdmin" #: main.php:313 -#| msgid "Attributes" msgid "Contribute" msgstr "Contribuir" @@ -9925,7 +9896,6 @@ msgid "Get support" msgstr "Obter suporte" #: main.php:327 -#| msgid "No change" msgid "List of changes" msgstr "Lista de mudanças" @@ -9968,11 +9938,10 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"Seu parâmetro PHP " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a] é inferior a validade " -"configurada para o cookie no phpMyAdmin, por isso, o seu login expira mais " -"cedo do que configurado no phpMyAdmin." +"Seu parâmetro PHP [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é inferior a " +"validade configurada para o cookie no phpMyAdmin, por isso, o seu login " +"expira mais cedo do que configurado no phpMyAdmin." #: main.php:403 msgid "" @@ -10001,9 +9970,6 @@ msgstr "" #: main.php:436 #, php-format -#| msgid "" -#| "pMyAdmin configuration storage has been deactivated. To find out click " -#| "ere%s." msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." @@ -10030,7 +9996,7 @@ msgstr "" "Servidor rodando com 'Suhosin'. Verifique a %sdocumentation%s para possíveis " "razões do erro." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases" @@ -10041,12 +10007,10 @@ msgid "Filter databases by name" msgstr "Alterar tabela ordenada por" #: navigation.php:243 -#| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Filtrar tabelas por nome" #: navigation.php:291 navigation.php:294 -#| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Criar tabela" @@ -10096,7 +10060,6 @@ msgid "Toggle small/big" msgstr "Mudar para pequeno/grande" #: pmd_general.php:133 -#| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Alternar linhas de relação" @@ -10105,7 +10068,6 @@ msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" #: pmd_general.php:146 -#| msgid "Submit Query" msgid "Build Query" msgstr "Construir uma consulta" @@ -10130,19 +10092,16 @@ msgid "Delete relation" msgstr "Apagar relacionamento" #: pmd_general.php:501 pmd_general.php:560 -#| msgid "Relation deleted" msgid "Relation operator" msgstr "Operador de relacionamento" #: pmd_general.php:511 pmd_general.php:570 pmd_general.php:693 #: pmd_general.php:810 -#| msgid "Export" msgid "Except" msgstr "Exceto" #: pmd_general.php:517 pmd_general.php:576 pmd_general.php:699 #: pmd_general.php:816 -#| msgid "in query" msgid "subquery" msgstr "sub-consulta" @@ -10151,17 +10110,14 @@ msgid "Rename to" msgstr "Renomear para " #: pmd_general.php:523 pmd_general.php:622 -#| msgid "User name" msgid "New name" msgstr "Novo nome" #: pmd_general.php:526 pmd_general.php:741 -#| msgid "Create" msgid "Aggregate" msgstr "Agregar" #: pmd_general.php:851 -#| msgid "Table options" msgid "Active options" msgstr "Opções ativas" @@ -10174,27 +10130,22 @@ msgid "Page creation failed" msgstr "Falha na criação da página" #: pmd_pdf.php:117 -#| msgid "pages" msgid "Page" msgstr "página" #: pmd_pdf.php:127 -#| msgid "Import files" msgid "Import from selected page" msgstr "Importar da página selecionada" #: pmd_pdf.php:128 -#| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportar para a página selecionada" #: pmd_pdf.php:130 -#| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar uma página e exportar para ela" #: pmd_pdf.php:142 -#| msgid "User name" msgid "New page name: " msgstr "Nome da nova página" @@ -10239,7 +10190,6 @@ msgid "Cannot save settings, submitted form contains errors" msgstr "As configurações não podem salvas, o formulário submetido contém erros" #: prefs_manage.php:81 -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Não foi possível importar configuração de: \"%1$s\"" @@ -10256,7 +10206,6 @@ msgid "Saved on: @DATE@" msgstr "Salvo em: @DATE@" #: prefs_manage.php:248 -#| msgid "Import files" msgid "Import from file" msgstr "Importar do arquivo" @@ -10321,7 +10270,6 @@ msgid "%s table not found or not set in %s" msgstr "%s tabela não encontrada ou não configurada em %s" #: schema_export.php:62 -#| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" msgstr "Arquivo não existe" @@ -10329,29 +10277,29 @@ msgstr "Arquivo não existe" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Arquivos" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Mostrar consultas completas" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Nome do log" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Posição" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Posição original" @@ -10359,7 +10307,7 @@ msgstr "Posição original" msgid "Character Sets and Collations" msgstr "Conjuntos de caracteres e Collations" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10367,24 +10315,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Banco de Dados %s foi eliminado com sucesso!" msgstr[1] "Banco de Dados %s foi eliminado com sucesso!" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Estatísticas do Banco de Dados" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Replicação mestre" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Replicação escrava" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Habilitar estatísticas" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10433,7 +10381,6 @@ msgid "License" msgstr "Licença" #: server_plugins.php:166 -#| msgid "Disabled" msgid "disabled" msgstr "desabilitado" @@ -10455,41 +10402,40 @@ msgstr "Os privilégios foram recarregados com sucesso." msgid "Unknown error" msgstr "Erro desconhecido" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Não foi possível conectar ao %s mestre." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Não foi possível fazer a leitura da posição de log mestre. Possível problema " "de permissões no mestre." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Não foi possível alterar o mestre" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format -#| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Servidor mestre alterado com sucesso para %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Esse servidor é configurado como mestre em um processo de replicação" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Exibir status de mestre" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Mostrar escravas conectadas" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10498,11 +10444,11 @@ msgstr "" "Esse servidor não está configurado como mestre em um processo de replicação. " "Deseja configurá-lo para tal?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configuração mestre" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10516,19 +10462,19 @@ msgstr "" "dados), ou por ignorar todos os bancos de dados por padrão, replicando " "somente bancos de dados especificados. Por favor selecione o modo:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replicar todos bancos de dados; Ignorar:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todos bancos de dados; Replicar:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Por favor, selecione bancos de dados:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10536,7 +10482,7 @@ msgstr "" "Agora, adicione as seguintes linhas ao final da seção [mysqld] em seu my.cnf " "e por favor reinicie o servidor MySQL em seguida." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10546,82 +10492,82 @@ msgstr "" "Em seguida, você deveria ver uma mensagem informação você que este servidor " "está configurado como master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Processo SQL escravo não está em execução" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Processo IO escravo não está em execução" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Servidor está configurado como escravo em um processo de replicação. Você " "deseja:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Ver status da tabela de escravo" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sincronizar bancos de dados com mestre" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Controlar escravo:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Inicialização completa" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Paralisação completa" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Reiniciar escravo" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Iniciar somente processo SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Parar processo SQL somente" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Iniciar somente processo IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Parar processo IO somente" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Administração de erro:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Pular erros pode resultar em mestre e escravo dessincronizados!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Pular erro atual" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Pular próximos" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "erro." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10630,12 +10576,12 @@ msgstr "" "Este servidor não está configurado como escravo em um processo de " "replicação. Deseja configurá-lo para tal?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10643,127 +10589,119 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Manipulador" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Consulta do cache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Processos" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dados temporários" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Inserções demoradas" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Chave do cache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Junções" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Ordenando" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordenador da transação" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Nivelar (fechar) todas as tabelas" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Exibir tabelas abertas" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Exibir status dos escravos" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Nivelar cache da consulta" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informações de Runtime" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Todas as variáveis de status" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitor" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Assessoria" -#: server_status.php:822 server_status.php:848 -#| msgid "Number of rows:" +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Número de pontos de dados:" -#: server_status.php:826 server_status.php:852 -#| msgid "Refresh" +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Taxa de atualização: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtros" -#: server_status.php:873 server_variables.php:118 -#| msgid "Do not change the password" +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Contendo a palavra:" -#: server_status.php:878 -#| msgid "Show open tables" +#: server_status.php:877 msgid "Show only alert values" msgstr "Exibir somente valores de alerta" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrar por categoria..." -#: server_status.php:895 -#| msgid "Show open tables" +#: server_status.php:894 msgid "Show unformatted values" msgstr "Exibir valores não formatados" -#: server_status.php:899 -#| msgid "Relations" +#: server_status.php:898 msgid "Related links:" msgstr "Links relacionados:" -#: server_status.php:934 -#| msgid "Query type" +#: server_status.php:933 msgid "Run analyzer" msgstr "Executar analisador" -#: server_status.php:935 -#| msgid "Introduction" +#: server_status.php:934 msgid "Instructions" msgstr "Instruções" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10771,17 +10709,16 @@ msgstr "" "O sistema de Assessoria pode fornecer recomendações sobre variáveis de " "servidor, analisando as variáveis de status do servidor." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" "Saiba, porém, que este sistema fornece recomendações baseadas em cálculos " -"simples e por princípios, o que não necessariamente se aplica ao seu " -"sistema." +"simples e por princípios, o que não necessariamente se aplica ao seu sistema." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10792,7 +10729,7 @@ msgstr "" "Aperfeiçoamentos incorretos podem resultar em efeitos negativos na " "performance." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10803,32 +10740,31 @@ msgstr "" "desfazer a alteração se não houver melhoramentos claramente mensuráveis." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Questões desde a inicialização: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Comandos" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de rede desde inicialização: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format -#| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Esse servidor MySQL está rodando por %1$s. Ele foi iniciado em %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10836,19 +10772,19 @@ msgstr "" "Este servidor MySQL funciona como mestre e escravo em processo " "de replicação." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor MySQL funciona como mestre em processo de " "replicação." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor MySQL funciona como escravo em processo de " "replicação." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10856,11 +10792,11 @@ msgstr "" "Para mais informações sobre status de replicação no servidor, por favor " "visite a seção de replicação." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Status de replicação" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10868,35 +10804,35 @@ msgstr "" "Em servidores ocupados, os contadores de byte podem sobrecarregar, então as " "estatísticas como relatadas pelo servidor MySQL podem estar incorretas." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Recebido" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Enviar" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Comando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10904,12 +10840,11 @@ msgstr "" "O número de conexões que foram abortadas porque o cliente morreu sem fechar " "a conexão de forma apropriada." -#: server_status.php:1467 -#| msgid "Whether to enable SSL for connection to MySQL server." +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "O número de tentativas de conexão sem sucesso ao servidor MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10919,17 +10854,17 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "O número de transações que usaram o cache do log binário temporário." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "O número de tentativas de conexão (com sucesso ou não) ao servidor MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10941,11 +10876,11 @@ msgstr "" "grande, você pode aumentar o valor de tmp_table_size para fazer as tabelas " "temporárias serem baseadas na memória ou invés de baseadas no disco." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10953,7 +10888,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10961,7 +10896,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10969,23 +10904,23 @@ msgstr "" "O número de processos manipuladores de INSERT DELAYED em uso. Cada tabela " "diferente em que se usa INSERT DELAYED começa seu próprio processo." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "O número de vezes que uma linha foi deletada de uma tabela." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10995,7 +10930,7 @@ msgstr "" "ele sabe sobre uma tabela com um nome dado. Isto é chamado descoberta. " "Handler_discover indica o número de vezes que tabelas foram descobertas." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11005,7 +10940,7 @@ msgstr "" "alto, sugere que o usuário está fazendo muitas varreduras completas do " "índice; por exemplo, SELECT col1 FROM foo, supondo que col1 é um índice." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11014,7 +10949,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11024,7 +10959,7 @@ msgstr "" "incrementado se você estiver consultando uma coluna do índice com uma " "restrição da escala ou se você estiver fazendo uma varredura do índice." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11032,7 +10967,7 @@ msgstr "" "O número de requisições para ler a linha precedente na ordem da chave. Este " "método de leitura é usado principalmente para otimizar ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11045,7 +10980,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11057,37 +10992,37 @@ msgstr "" "sugere que suas tabelas não estão corretamente indexadas ou que suas " "consultas não estão escritas para tomar vantagem dos índices que você têm." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "O número de requisições para atualizar uma linha na tabela." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "O número de requisições para inserir uma linha na tabela." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "O número de páginas que contém dados (sujos ou limpos)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "O número de páginas do buffer pool que foram requisitadas para serem " "niveladas." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11097,7 +11032,7 @@ msgstr "" "que estão sendo lidas ou escritas atualmente ou aquela não pode ser nivelada " "ou removido por alguma outra razão." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11109,11 +11044,11 @@ msgstr "" "Este valor pode também ser calculado como Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11122,7 +11057,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11130,11 +11065,11 @@ msgstr "" "O número de ler-adiante sequenciais InnoDB iniciado. Isto acontece quando o " "InnoDB faz uma varredura sequencial completa da tabela." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "O número de requisições de leitura lógica InnoDB que foram feitas." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11142,7 +11077,7 @@ msgstr "" "O número de leituras lógicas que o InnoDB não pode satisfer do buffer pool e " "teria que fazer uma leitura de página simples." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11156,55 +11091,55 @@ msgstr "" "primeiramente. Este contador conta instâncias dessas esperas. Se o tamanho " "do buffer pool for ajustado corretamente, este valor deve ser pequeno." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "O número de escritas feitas para o buffer pool do InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "O número de escritas doublewrite que foram executadas e o número de páginas " "que foram escritas para esta finalidade." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11212,35 +11147,35 @@ msgstr "" "O número de esperas geradas porque o buffer do log era muito pequeno e teve " "que esperar que fosse nivelada antes de continuar." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "O número de escritas físicas para o arquivo de log." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "O número de escritas fsyncs feitas no arquivo de log." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "O número de bytes escritos para o arquivo de log." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11249,52 +11184,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "O número de linhas trancadas que estão esperando atualmente." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "O tempo médio para recuperar uma linha trancada, em milísegundo." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "O tempo total gasto para recuperar linhas trancadas, em milísegundo." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "O máximo de tempo para recuperar uma linha trancada, em milísegundo." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" "O número de vezes que uma linhas trancada teve que esperar para ser escrita." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11302,7 +11237,7 @@ msgstr "" "O número de blocos chave no cache chave que mudaram mas não foram nivelados " "ainda ao disco. Antes era chamado de Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11310,7 +11245,7 @@ msgstr "" "O número de blocos não usados no cache chave. Você pode usar este valor para " "determinar quanto do cache chave está no uso." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11320,17 +11255,17 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formato do arquivo importado" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "O número de requisições para ler um bloco chave do cache." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11340,26 +11275,26 @@ msgstr "" "alto, então seu valor do key_buffer_size é provavelmente muito baixo. A taxa " "de falta de cache pode ser calculada como Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "O número de requisições para escrever um bloco chave para o cache." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "O número de escritas físicas para um bloco chave para o disco." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11370,7 +11305,7 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11378,12 +11313,12 @@ msgstr "" "O número máximo de conexões que estavam em uso simultaneamente desde a " "inicialização do servidor." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "O número de linhas esperando para serem escritas na fila de INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11391,19 +11326,20 @@ msgstr "" "O número de tabelas que devem estar abertas. Se aberta, as tabelas são " "grandes, o valor do cache de suas tabelas é provavelmente muito pequeno." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." -msgstr "O número de streams que estão abertos (usados principalmente para log)." +msgstr "" +"O número de streams que estão abertos (usados principalmente para log)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11413,19 +11349,19 @@ msgstr "" "podem indicar problemas de fragmentação, o que pode ser resolvido com " "execução de um comando FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11435,10 +11371,10 @@ msgstr "" "O número de consultas que foram removidas do cache para liberar memória para " "novas consultas. Essa informação pode ajudar você a ajustar o tamanho da " "consulta do cache. A consulta do cache usa a estratégia do \"usado menos " -"recentemente\" (LRU - least recently used) para decidir qual consulta remover " -"do cache." +"recentemente\" (LRU - least recently used) para decidir qual consulta " +"remover do cache." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11446,19 +11382,19 @@ msgstr "" "O número de consultas sem cache (não cacheável, ou não pode ser cacheável " "devido à configuração em query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11466,13 +11402,13 @@ msgstr "" "O número de junções que não usaram índices. Se este valor não for 0, você " "deve cuidadosamente verificar os índices de suas tabelas." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "O número de junções que usaram uma pesquisa de escala na tabela de " "referência." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11481,7 +11417,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11489,17 +11425,16 @@ msgstr "" "O número de junções que usaram escalas na primeira tabela. (Não é " "normalmente crítico mesmo se este for grande.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "O número junções que fez uma varredura completa da primeira tabela." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -"O número de tabelas temporárias abertas atualmente pelo processo SQL " -"escravo." +"O número de tabelas temporárias abertas atualmente pelo processo SQL escravo." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11507,11 +11442,11 @@ msgstr "" "Número total (desde o início) de vezes que o processo SQL escravo de " "replicação teve que tentar transações." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Isto é ON se este servidor é um escravo conectado à um mestre." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11519,12 +11454,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "O número de consultas que levaram mais que long_query_time segundos." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11534,23 +11469,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "O número de ordenações que foram feitas com escalas." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "O número de ordenações que foram feitas scaneando a tabela." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." -msgstr "O número de vezes que uma tabela trancada foi recuperada imediatamente." +msgstr "" +"O número de vezes que uma tabela trancada foi recuperada imediatamente." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11562,7 +11498,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11572,11 +11508,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11588,72 +11524,67 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Rastreamento não está ativo." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Iniciar monitor" -#: server_status.php:1745 -#| msgid "Introduction" +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instruções/Configurações" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Concluiu reorganização/edição de graficos" -#: server_status.php:1759 server_status.php:1832 -#| msgid "Add index" +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Adicionar gráfico" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Taxa de atualização" -#: server_status.php:1770 -#| msgid "Add/Delete Field Columns" +#: server_status.php:1769 msgid "Chart columns" msgstr "Colunas do gráfico" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Organização de gráficos" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" "A organização dos gráficos é armazenada no armazenamento local dos " -"navegadores. Você pode exportá-la, se você tiver uma configuração " -"complicada." +"navegadores. Você pode exportá-la, se você tiver uma configuração complicada." -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restaurar valor padrão" -#: server_status.php:1791 -#| msgid "1. Introduction" +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Instruções do monitor" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11667,7 +11598,7 @@ msgstr "" "habilitado. Note, porém, que general_log produz muitos dados e aumentar a " "carga do servidor em até 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11680,12 +11611,11 @@ msgstr "" "posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " "gráficos no servidor." -#: server_status.php:1810 -#| msgid "Pause monitor" +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Usando o monitor:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11693,10 +11623,10 @@ msgid "" msgstr "" "Seu navegador vai atualizar todos os gráficos exibidos em intervalo regular. " "Você pode adicionar gráficos e alterar a taxe de atualização em " -"\"Configurações\", ou remover qualquer gráfico usando o ícone de roda dentada " -"em cada gráfico" +"\"Configurações\", ou remover qualquer gráfico usando o ícone de roda " +"dentada em cada gráfico" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11709,11 +11639,11 @@ msgstr "" "agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " "para, então, analisá-los." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Por favor, note:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11729,97 +11659,87 @@ msgstr "" # The word "chart" in brasilian portuguese can mean either "Table = tabela" or # "Report = relatório" or "Chart = gráfico" or "Diagram = diagrama". So, it # depends of the context. -#: server_status.php:1837 -#| msgid "Remove database" +#: server_status.php:1836 msgid "Preset chart" msgstr "Gráfico predefinido." -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Variável(is) de status" -#: server_status.php:1843 -#| msgid "Select Tables" +#: server_status.php:1842 msgid "Select series:" msgstr "Selecione série:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Normalmente monitorado" -#: server_status.php:1860 -#| msgid "Invalid table name" +#: server_status.php:1859 msgid "or type variable name:" msgstr "ou digite o nome da variável:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Exibir como valor diferencial" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Aplicar um divisor" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Anexar unidade a valores de dados" -#: server_status.php:1879 -#| msgid "Add a new server" +#: server_status.php:1878 msgid "Add this series" msgstr "Adicionar esta série" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Limpar séries" -#: server_status.php:1884 -#| msgid "SQL queries" +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Séries no gráfico:" -#: server_status.php:1899 -#| msgid "Show statistics" +#: server_status.php:1898 msgid "Log statistics" msgstr "Estatísticas de log" -#: server_status.php:1900 -#| msgid "Select Tables" +#: server_status.php:1899 msgid "Selected time range:" msgstr "Faixa de tempo selecionada:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remova dados de variável de comandos INSERT para melhor agrupamento" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Escolha de qual log você deseja que as estatísticas seja geradas." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Resultados são agrupados por texto de consulta." -#: server_status.php:1922 -#| msgid "Query type" +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analisador de consulta" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format -#| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format -#| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" @@ -11908,7 +11828,6 @@ msgid "Target database has been synchronized with source database" msgstr "O banco de dados alvo foi sincronizado com o banco de dados fonte" #: server_synchronize.php:1191 -#| msgid "Issued queries" msgid "Executed queries" msgstr "Consultas executadas" @@ -11922,7 +11841,6 @@ msgstr "Conexão atual" #: server_synchronize.php:1424 #, php-format -#| msgid "Configuration" msgid "Configuration: %s" msgstr "Configuração: %s" @@ -11938,19 +11856,19 @@ msgstr "" "Banco de dados alvo será completamente sincronizado com banco de dados " "fonte. Banco de dados fonte permanecerá inalterado." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Erro na atribuição da variável" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variáveis e configurações do servidor" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valor da sessão" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valor global" @@ -11974,9 +11892,9 @@ msgid "" "documentation[/a]. Otherwise you will be only able to download or display it." msgstr "" "Por favor, crie a pasta [em]config[/em] com permissão de escrita no servidor " -"web, no diretório raiz do phpMyAdmin conforme descrito na " -"[a@Documentation.html#setup_script]documentação[/a]. Caso contrário, você " -"somente poderá baixá-la ou exibi-la." +"web, no diretório raiz do phpMyAdmin conforme descrito na [a@Documentation." +"html#setup_script]documentação[/a]. Caso contrário, você somente poderá " +"baixá-la ou exibi-la." #: setup/frames/index.inc.php:60 msgid "" @@ -12000,7 +11918,6 @@ msgid "Insecure connection" msgstr "Conexão vulnerável" #: setup/frames/index.inc.php:98 -#| msgid "Configuration" msgid "Configuration saved." msgstr "Configuração salva." @@ -12234,7 +12151,6 @@ msgstr "" "sistema." #: setup/lib/index.lib.php:344 -#| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." msgstr "Você deveria utilizar conexões SSL, se o seu servidor web suportar." @@ -12255,88 +12171,80 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." #: setup/validate.php:22 -#| msgid "No databases" msgid "Wrong data" msgstr "Dados incorretos" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como padrão." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Nome" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Os usuários selecionados foram apagados com sucesso." #: tbl_chart.php:83 -#| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Barra" #: tbl_chart.php:85 -#| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Coluna" #: tbl_chart.php:87 -#| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linha" #: tbl_chart.php:89 -#| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Spline" #: tbl_chart.php:92 -#| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "Setor" #: tbl_chart.php:96 -#| msgid "Packed" msgid "Stacked" msgstr "Empilhado" #: tbl_chart.php:99 -#| msgid "Report title" msgid "Chart title" msgstr "Título do gráfico" @@ -12345,27 +12253,22 @@ msgid "X-Axis:" msgstr "Eixo X:" #: tbl_chart.php:121 -#| msgid "SQL queries" msgid "Series:" msgstr "Série:" #: tbl_chart.php:141 -#| msgid "X Axis label" msgid "X-Axis label:" msgstr "Rótulo do Eixo X:" #: tbl_chart.php:143 -#| msgid "Value" msgid "X Values" msgstr "Valor X" #: tbl_chart.php:144 -#| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Rótulo do Eixo Y:" #: tbl_chart.php:145 -#| msgid "Value" msgid "Y Values" msgstr "Valor Y" @@ -12396,17 +12299,14 @@ msgid "Height" msgstr "Altura" #: tbl_gis_visualization.php:135 -#| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Rótulo da coluna" #: tbl_gis_visualization.php:137 -#| msgid "- none -" msgid "-- None --" msgstr "-- nenhum --" #: tbl_gis_visualization.php:150 -#| msgid "Total" msgid "Spatial column" msgstr "Coluna espacial" @@ -12415,12 +12315,10 @@ msgid "Redraw" msgstr "Redesenhar" #: tbl_gis_visualization.php:176 -#| msgid "Save as file" msgid "Save to file" msgstr "Salvar para arquivo" #: tbl_gis_visualization.php:177 -#| msgid "Table name" msgid "File name" msgstr "Nome do arquivo" @@ -12437,7 +12335,6 @@ msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" #: tbl_indexes.php:197 -#| msgid "Edit mode" msgid "Edit index" msgstr "Editar índice" @@ -12445,18 +12342,18 @@ msgstr "Editar índice" msgid "Index name:" msgstr "Nome do índice:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tipo de índice:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" @@ -12484,7 +12381,6 @@ msgid "The table name is empty!" msgstr "O Nome da Tabela está vazio!" #: tbl_printview.php:66 -#| msgid "Show tables" msgid "Showing tables" msgstr "Exibindo tabelas" @@ -12494,7 +12390,6 @@ 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:423 -#| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" @@ -12559,12 +12454,10 @@ msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" #: tbl_tracking.php:448 -#| msgid "Tracking data manipulation successfully deleted" msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" #: tbl_tracking.php:450 tbl_tracking.php:472 -#| msgid "Gather errors" msgid "Query error" msgstr "Erro de consulta" @@ -12583,12 +12476,10 @@ msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %s com datas desde %s até %s pelo usuário %s %s" #: tbl_tracking.php:504 -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" #: tbl_tracking.php:515 -#| msgid "No databases" msgid "No data" msgstr "Nenhum dado" @@ -12629,41 +12520,41 @@ msgstr "Exportar como %s" msgid "Show versions" msgstr "Exibir versões" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Desativar rastreamento para %s.%s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Desativar agora" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Ativar rastreamento para %s.%s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Ativar agora" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Criar versão %s de %s.%s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Rastrear essas instruções de definição de dados:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Rastrear essas instruções de manipulação de dados:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Criar versão" @@ -12722,7 +12613,6 @@ msgid "The uptime is only %s" msgstr "" #: libraries/advisory_rules.txt:56 -#| msgid "Questions" msgid "Questions below 1,000" msgstr "Questões abaixo de 1.000" @@ -12740,12 +12630,10 @@ msgstr "" #: libraries/advisory_rules.txt:61 #, php-format -#| msgid "Current connection" msgid "Current amount of Questions: %s" msgstr "Quantidade atual de questões: %s" #: libraries/advisory_rules.txt:63 -#| msgid "Show SQL queries" msgid "Percentage of slow queries" msgstr "Porcentagem de consultas lentas" @@ -12766,7 +12654,6 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: libraries/advisory_rules.txt:70 -#| msgid "Flush query cache" msgid "Slow query rate" msgstr "Taxa de consulta lenta" @@ -12787,7 +12674,6 @@ msgstr "" "hora." #: libraries/advisory_rules.txt:77 -#| msgid "SQL queries" msgid "Long query time" msgstr "Tempo de consulta grande" @@ -12805,12 +12691,10 @@ msgstr "" #: libraries/advisory_rules.txt:82 #, php-format -#| msgid "long_query_time is set to %d second(s)." msgid "long_query_time is currently set to %ds." msgstr "\"long_query_time\" está definida para %ds." #: libraries/advisory_rules.txt:84 -#| msgid "Show query box" msgid "Slow query logging" msgstr "Gravação de Logs de consulta lento" @@ -12833,7 +12717,6 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "slow_launch_time está atribuído a %s" #: libraries/advisory_rules.txt:93 -#| msgid "Select Tables" msgid "Release Series" msgstr "Série liberada" @@ -12850,7 +12733,6 @@ msgstr "" #: libraries/advisory_rules.txt:98 libraries/advisory_rules.txt:105 #: libraries/advisory_rules.txt:112 #, php-format -#| msgid "Create version" msgid "Current version: %s" msgstr "Versão atual: %s" @@ -12875,13 +12757,11 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:111 -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Você deveria atualizar para uma versão estável do MySQL 5.5." #: libraries/advisory_rules.txt:114 libraries/advisory_rules.txt:121 #: libraries/advisory_rules.txt:128 -#| msgid "Description" msgid "Distribution" msgstr "Distribuição" @@ -12922,7 +12802,6 @@ msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" #: libraries/advisory_rules.txt:135 -#| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Arquitetura MySQL" @@ -12943,12 +12822,10 @@ msgid "Available memory on this host: %s" msgstr "" #: libraries/advisory_rules.txt:146 -#| msgid "Query cache" msgid "Query cache disabled" msgstr "Cache de consulta desabilitdado" #: libraries/advisory_rules.txt:149 -#| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "O cache de consulta não está habilitado." @@ -12965,7 +12842,6 @@ msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: libraries/advisory_rules.txt:153 -#| msgid "Query cache" msgid "Query caching method" msgstr "Método de cache de consulta" @@ -12992,7 +12868,6 @@ msgstr "" #: libraries/advisory_rules.txt:160 #, php-format -#| msgid "Query cache efficiency" msgid "Query cache efficiency (%%)" msgstr "Eficiência do cache de consulta (%%)" @@ -13028,12 +12903,11 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 -#| msgid "Query cache" msgid "Query cache fragmentation" msgstr "Fragmentação do cache de consulta" @@ -13070,7 +12944,6 @@ msgid "Query cache low memory prunes" msgstr "Cache de consulta utilizado" #: libraries/advisory_rules.txt:184 -#| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." @@ -13093,7 +12966,6 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:188 -#| msgid "Query cache" msgid "Query cache max size" msgstr "Tamanho máximo do cache consulta" @@ -13164,8 +13036,8 @@ msgstr "" #, fuzzy, php-format #| msgid "%s%% of all connections are aborted. This value should be below 1%%" msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%%" @@ -13538,8 +13410,8 @@ msgstr "" #: libraries/advisory_rules.txt:332 #, fuzzy, php-format #| msgid "" -#| "Max_used_connections is at %s%% of max_connections, it should be below " -#| "80%%" +#| "Max_used_connections is at %s%% of max_connections, it should be below 80%" +#| "%" msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" @@ -13748,8 +13620,7 @@ msgstr "" #, php-format msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" -"%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%" -"%" +"%s%% de todas as conexões são abortadas. Este valor deve ser menor do que 1%%" #: libraries/advisory_rules.txt:399 msgid "Rate of aborted connections" @@ -13786,8 +13657,7 @@ msgstr "" #, php-format msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" -"%s%% de todos os clientes são abortados. Este valor deve ser menor do que 2%" -"%" +"%s%% de todos os clientes são abortados. Este valor deve ser menor do que 2%%" #: libraries/advisory_rules.txt:413 msgid "Rate of aborted clients" @@ -13945,9 +13815,8 @@ msgid "" "refman/5.5/en/concurrent-inserts.html\">MySQL Documentation" msgstr "" "Atribuindo 1 a {concurrent_insert} reduz a contenção entre leitores e " -"escritores em uma determinada tabela. Veja mais na Documentação MySQL" +"escritores em uma determinada tabela. Veja mais na Documentação MySQL" #: libraries/advisory_rules.txt:457 msgid "concurrent_insert is set to 0" @@ -13979,8 +13848,8 @@ msgstr "concurrent_insert está com valor 0" #~ "No description is available for this transformation.
Please ask the " #~ "author what %s does." #~ msgstr "" -#~ "Sem descrição disponível para essa transformação.
Pergunte ao autor o " -#~ "que %s faz." +#~ "Sem descrição disponível para essa transformação.
Pergunte ao autor " +#~ "o que %s faz." #~ msgid "" #~ "MIME types printed in italics do not have a separate transformation " @@ -14026,8 +13895,8 @@ msgstr "concurrent_insert está com valor 0" #~ "contain." #~ msgstr "" #~ "Exibir linhas afetadas de cada instrução nas consultas de multipla-" -#~ "instrução. Veja em libraries/import.lib.php quantas consultas uma instrução " -#~ "pode conter por padrão." +#~ "instrução. Veja em libraries/import.lib.php quantas consultas uma " +#~ "instrução pode conter por padrão." #, fuzzy #~| msgid "Data only" @@ -14038,8 +13907,8 @@ msgstr "concurrent_insert está com valor 0" #~ "Suggest a database name on the "Create Database" form (if " #~ "possible) or keep the text field empty" #~ msgstr "" -#~ "Sugerir um nome do banco de dados no formulário "Criar Banco de Dados%" -#~ "quot; (se possível) ou manter o campo texto vazio" +#~ "Sugerir um nome do banco de dados no formulário "Criar Banco de Dados" +#~ "%quot; (se possível) ou manter o campo texto vazio" #~ msgid "Suggest new database name" #~ msgstr "Sugerir nome para o banco de dados" @@ -14111,8 +13980,8 @@ msgstr "concurrent_insert está com valor 0" #~ msgid "" #~ "Are you sure you want to disable all BLOB references for database %s?" #~ msgstr "" -#~ "Tem certeza que quer desabilitar todas as referências BLOB para o banco de " -#~ "dados %s?" +#~ "Tem certeza que quer desabilitar todas as referências BLOB para o banco " +#~ "de dados %s?" #~ msgid "Unknown error while uploading." #~ msgstr "Erro desconhecido no carregamento do arquivo." @@ -14177,8 +14046,8 @@ msgstr "concurrent_insert está com valor 0" #~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates " #~ "maximum number for which vertical model is used" #~ msgstr "" -#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou um número que indica o número " -#~ "máximo para o qual o modelo vertical é usado" +#~ "[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou um número que indica o " +#~ "número máximo para o qual o modelo vertical é usado" #~ msgid "Create table on database %s" #~ msgstr "Criar nova tabela no Banco de Dados %s" @@ -14201,8 +14070,8 @@ msgstr "concurrent_insert está com valor 0" #~ "appropriate column name." #~ msgstr "" #~ "O campo de exibição está em rosa. Para ajustar/desajustar um campo como " -#~ "campo de exibição, clique no ícone \"Escolher campo para exibição\", então " -#~ "clique no nome do campo apropriado." +#~ "campo de exibição, clique no ícone \"Escolher campo para exibição\", " +#~ "então clique no nome do campo apropriado." #~ msgid "memcached usage" #~ msgstr "Uso do espaço" @@ -14295,12 +14164,13 @@ msgstr "concurrent_insert está com valor 0" #~ "a semicolon is missing somewhere.
If you receive a blank page, " #~ "everything is fine." #~ msgstr "" -#~ "O phpMyAdmin não foi capaz de ler o arquivo de configuração!
Isto pode " -#~ "acontecer se o php encontrar um erro no parsing ou se não conseguir " -#~ "encontrar o arquivo.
Chame o arquivo de configuração diretamente usando " -#~ "o link abaixo e leia a(s) mensagem(ns) de erro do php. Na maior " -#~ "parte dos casos, trata-se de uma falta de aspas ou de um ponto e vírgula " -#~ "errado.
Se receber uma página em branco, está tudo certo." +#~ "O phpMyAdmin não foi capaz de ler o arquivo de configuração!
Isto " +#~ "pode acontecer se o php encontrar um erro no parsing ou se não " +#~ "conseguir encontrar o arquivo.
Chame o arquivo de configuração " +#~ "diretamente usando o link abaixo e leia a(s) mensagem(ns) de erro " +#~ "do php. Na maior parte dos casos, trata-se de uma falta de aspas ou de um " +#~ "ponto e vírgula errado.
Se receber uma página em branco, está tudo " +#~ "certo." #~ msgid "Dropping Event" #~ msgstr "Remoção de eventos" @@ -14335,8 +14205,8 @@ msgstr "concurrent_insert está com valor 0" #~ "Server traffic: These tables show the network traffic statistics " #~ "of this MySQL server since its startup." #~ msgstr "" -#~ "Tráfico do servidor: Essas tabelas mostram as estatísticas do tráfico " -#~ "da rede neste servidor MySQL desde o início." +#~ "Tráfico do servidor: Essas tabelas mostram as estatísticas do " +#~ "tráfico da rede neste servidor MySQL desde o início." #~ msgid "" #~ "Query statistics: Since its startup, %s queries have been sent to " @@ -14363,8 +14233,8 @@ msgstr "concurrent_insert está com valor 0" #~ "For compatibility reasons the chart image is segmented by default, select " #~ "this to draw the whole chart in one image." #~ msgstr "" -#~ "Por questões de compatibilidade a imagem do gráfico é segmentada por padrão, " -#~ "selecione este para desenhar o gráfico inteiro em uma imagem." +#~ "Por questões de compatibilidade a imagem do gráfico é segmentada por " +#~ "padrão, selecione este para desenhar o gráfico inteiro em uma imagem." #~ msgid "Add a New User" #~ msgstr "Adicionar usuário" diff --git a/po/ro.po b/po/ro.po index 558ee05af9..f1fa2a1834 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-06-30 17:07+0200\n" "Last-Translator: Alex Marin \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: Weblate 1.1\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Numărul paginii:" @@ -40,36 +40,36 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Caută" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Caută" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Execută" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nume cheie" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Descriere" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Folosește această valoare" @@ -120,18 +120,18 @@ msgstr "Baza de date %1$s a fost creată." msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Comentarii tabel" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Coloană" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Coloană" msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tip" msgid "Null" msgstr "Nul" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Nul" msgid "Default" msgstr "Setare de bază" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Setare de bază" msgid "Links to" msgstr "Trimitere la" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Trimitere la" msgid "Comments" msgstr "Comentarii" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Comentarii" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nu" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Nu" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Vizualizarea schemei bazei de date" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Selectează tot" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Baza de date %1$s a fost redenumită în %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza de date %1$s a fost copiata la %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce, click %saici%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabel" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Linie" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Mărime" @@ -345,7 +345,7 @@ msgstr "în folosință" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Creare" @@ -353,7 +353,7 @@ msgstr "Creare" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Ultima actualizare" @@ -361,7 +361,7 @@ msgstr "Ultima actualizare" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Ultima verficare" @@ -377,7 +377,7 @@ msgstr[2] "%s tabele" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -411,9 +411,9 @@ msgstr "Tabelele urmărite" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza de date" @@ -431,70 +431,70 @@ msgstr "Actualizat(ă)" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stare" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Acțiune" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Afișează" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 #, fuzzy msgid "Delete tracking data for this table" msgstr "Șterge datele urmărite din acest tabel" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Aruncă" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 #, fuzzy msgid "active" msgstr "activ(ă)" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 #, fuzzy msgid "not active" msgstr "inactiv(ă)" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versiuni" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Raport de monitorizare" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Instantaneu al structurii" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Monitorizează tabel" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Jurnalul (log) bazei de date" @@ -515,12 +515,12 @@ msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -533,7 +533,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." @@ -543,127 +543,130 @@ msgstr "Copia a fost salvată în fișierul %s." msgid "Invalid export type" msgstr "Modul de export" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Valoare pentru coloana \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Adaugă %s cîmp(uri)" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linii terminate de" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Adaugă %s cîmp(uri)" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Adaugă un server nou" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Ieșire" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Eticheta a fost ștearsă." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -673,7 +676,7 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: import.php:400 +#: import.php:404 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 " @@ -683,42 +686,42 @@ 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importul s-a terminat cu succes, %d interogări executate." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Comanda dumneavoastră SQL a fost executată cu succes" @@ -734,7 +737,7 @@ msgstr "" "phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu " "cadre." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." @@ -744,7 +747,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." msgid "Do you really want to execute \"%s\"?" msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -785,7 +788,7 @@ msgstr "Adaugă Index" msgid "Edit Index" msgstr "Editează Index" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Adaugă %d coloană(e)" @@ -841,26 +844,26 @@ msgstr "Închide" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editare" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Alegerea serverului" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "Comanda SQL" @@ -871,24 +874,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -908,7 +911,7 @@ msgstr "Traficul server-ului (în KiB)" msgid "Connections since last refresh" msgstr "Conexiuni de la ultima reîmprospătare" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procese" @@ -926,7 +929,7 @@ msgstr "Întrebări de la ultima reîmprospătare" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statisticile rîndului" @@ -977,13 +980,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiO" @@ -1043,32 +1046,32 @@ msgstr "Octeți trimiși" msgid "Bytes received" msgstr "Octeți primiți" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Conexiuni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "octeți" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiO" @@ -1085,11 +1088,11 @@ msgstr "%s tabele" msgid "Questions" msgstr "Versiuni" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1116,12 +1119,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Nici unul(a)" @@ -1222,7 +1225,7 @@ msgstr "Modificați setările" msgid "Current settings" msgstr "Setările curente" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1320,7 +1323,7 @@ msgstr "Explică SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Timp" @@ -1428,8 +1431,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" @@ -1660,12 +1663,12 @@ msgstr "Durata de execuție a interogării" msgid "%d is not valid row number." msgstr "%d nu este un număr valid de rînduri." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Salveaza" @@ -1731,8 +1734,8 @@ msgstr "Operațiuni asupra rezultatelor interogării" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoră" @@ -1847,7 +1850,7 @@ msgstr "Afișează înregistrări" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generează" @@ -1954,27 +1957,27 @@ msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1982,37 +1985,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dec" @@ -2053,32 +2056,32 @@ msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sâm" @@ -2198,16 +2201,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "pe secundă" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "pe minut" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "pe oră" @@ -2224,7 +2227,7 @@ msgstr "Mărime maximă: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Documentație" @@ -2247,14 +2250,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Eroare" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Comanda SQL" @@ -2272,88 +2275,88 @@ msgstr "Comanda SQL" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 #, fuzzy msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Trimite comanda" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validează SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Creare profil" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Dum" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2361,28 +2364,28 @@ msgctxt "First page" msgid "Begin" msgstr "Începe" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Următorul" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2390,108 +2393,108 @@ msgctxt "Last page" msgid "End" msgstr "Sfîrșit" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Click pentru a selecta" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Structură" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Inserare" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Navigare" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operații" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "director de încărcare al serverului Web" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nu sunt fișiere pentru încărcare" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Golește" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Execută" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Listare" @@ -2510,100 +2513,100 @@ msgstr "" msgid "Font size" msgstr "Dimensiune font" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Crescătoare" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Descrescător" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortare" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Criteriu" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Adaugă/șterge criteriu" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Adaugă/Șterge coloane" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Reînnoire comandă" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Utilizare tabele" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Sau" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Și" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Modificare" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "toate cuvintele" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "fraza exactă" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "ca o expresie" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Caută rezultate pentru \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2612,7 +2615,7 @@ msgstr[0] "Total: %s rezultat(e)" msgstr[1] "Total: %s rezultat(e)" msgstr[2] "Total: %s rezultat(e)" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2621,46 +2624,46 @@ 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" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Ștergeți potrivirile pentru tabelul %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Șterge" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Caută în baza de date" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Cuvinte sau valori de căutat (metacaracter: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Găsește:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Cuvinte despărțite de un spațiu (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "În interiorul tabelei(lor):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "In interiorul coloanei::" @@ -2715,8 +2718,8 @@ msgstr "Capete de tabel la fiecare %s rânduri" msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2800,7 +2803,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Oprește" @@ -2817,8 +2820,8 @@ msgstr "în interogarea" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2830,7 +2833,7 @@ msgstr "Afișează înregistrări" msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" @@ -2841,7 +2844,7 @@ msgstr "comanda a durat %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Cele bifate:" @@ -2851,8 +2854,8 @@ msgstr "Cele bifate:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Marchează toate" @@ -2893,16 +2896,16 @@ msgstr "Legatură nevalidă" msgid "Too many error messages, some are not displayed." msgstr "Prea multe mesaje de eroare, unele nu sunt afișate." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 #, fuzzy msgid "File was not an uploaded file." msgstr "Fișierul nu a fost un fișier uploadat." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2910,27 +2913,27 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2938,11 +2941,11 @@ msgstr "" "Eroare la mutarea fișierului încărcat, vezi [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Eroare la mutarea fișierului încărcat." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Nu se poate citi fișierul încărcat (și mutat)." @@ -2951,68 +2954,68 @@ msgstr "Nu se poate citi fișierul încărcat (și mutat)." msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Index nu este definit!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexuri" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Interclasare" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Comentariu" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Cheia primară a fost aruncată" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indexul %s a fost aruncat" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3021,12 +3024,12 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Baze de date" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3095,18 +3098,18 @@ msgstr "Utilizatori" msgid "Synchronize" msgstr "Sincronizați" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Jurnal binar" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replicare" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabile" @@ -3243,8 +3246,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funcție" @@ -3254,11 +3257,11 @@ msgstr "Funcție" msgid "Operator" msgstr "Operand" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Valoare" @@ -3268,69 +3271,69 @@ msgstr "Valoare" msgid "Table Search" msgstr "Caută" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Inserare" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selectează cîmpurile (cel puțin unul):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Numărul de înregistrări pe pagină" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Ordine de afișare:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "Comanda SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "PHP extension to use" msgid "How to use" msgstr "Extensia PHP de utilizat" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3405,14 +3408,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3664,7 +3667,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabele" @@ -3678,12 +3681,12 @@ msgstr "Tabele" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Date" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Asupra" @@ -3801,7 +3804,7 @@ msgstr "Deschis" msgid "Closed" msgstr "Citare neînchisă" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3948,22 +3951,22 @@ msgstr "" "Această setare este dezactivată, nu va fi aplicată la configurarea " "dumneavoastră" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Seteaza valoarea: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Restaurează valoarea implicită" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Permite utilizatorilor să customizeze această valoare" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Resetare" @@ -4256,7 +4259,7 @@ msgstr "Setul de caractere al fișierului" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4371,7 +4374,7 @@ msgstr "Tasta label" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Tip MIME" @@ -4409,7 +4412,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Utilizați apostroful pentru numele tabelelor și a coloanelor" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Regim de compatibilitate SQL" @@ -6089,10 +6092,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Are nevoie de SQL Validator pentru a fi activată" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6368,7 +6371,7 @@ msgstr "Extensia %s lipsește. Vă rugăm să vă verificați configurația PHP. msgid "possible deep recursion attack" msgstr "posibil atac adânc recursiv" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6376,50 +6379,58 @@ msgstr "" "Server-ul nu răspunde (sau soclul serverului MySQL local nu este configurat " "corect)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serverul nu răspunde" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" "Vă rugăm să verificați drepturile de acces ale directorului ce conține baza " "de date." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detalii..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Schimbare parolă" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nu există parolă" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Re-tastează" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Criptare Parola" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Compatibil MySQL 4.0" @@ -6559,17 +6570,17 @@ msgstr ", @TABLE@ va deveni numele tabelei" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Această valoare este interpretată folosind %1$sstrftime%2$s, ca sa puteţi " "folosi şiruri de formatare a timpului. În plus, următoarele transformări vor " -"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ" -"%5$s pentru detalii." +"avea loc: %3$s. Orice alt text va fi păstrat aşa cum este. Vedeţi %4$sFAQ%5" +"$s pentru detalii." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6659,7 +6670,7 @@ msgstr "Creare relație" msgid "authored on %1$s by %2$s" msgstr "Creare relație" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6669,35 +6680,35 @@ msgstr "" "permisă sau acesta este un bug cunoscut în browser-ele bazate pe webkit " "(Safari, Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Formatul fișierului importat" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Fişierul este procesat, vă rugăm să aveţi răbdare." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6705,32 +6716,32 @@ msgstr "" "Vă rugăm să aveţi răbdare, fişierul este uploadat. Nu sunt disponibile " "detalii despre upload." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Se importă pe server-ul curent" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Se importă în baza de date \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Se importă în tabela \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Fișier de importat" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Fişierul poate fi comprimat (%s) sau necomprimat." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6820,72 +6831,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Zonă Tampon" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stare InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "pagini" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Pagini libere" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Pagini murdare" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Pagini ce conțin date" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Pagini de golit" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Pagini ocupate" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Cereri de citire" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Cereri de scriere" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 #, fuzzy msgid "Read misses" msgstr "Citiri gresite" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Scrierea așteaptă" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Scrierea așteaptă în %" @@ -7113,8 +7124,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7131,132 +7142,132 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Modul de export" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Ascunde" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" "Datorită lungimii sale,
acest cîmp s-ar putea să nu fie editabil" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Repornește inserția cu %s rînduri" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Editează rîndul următor" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7304,7 +7315,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7594,7 +7605,7 @@ msgstr "Opțiuni tabel" msgid "Rename table to" msgstr "Redenumire tabel la" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Motor de stocare" @@ -7714,8 +7725,8 @@ msgstr "Bine ați venit la %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 " @@ -7795,21 +7806,21 @@ msgstr "Nume de utilizator/parolă incorecte. Accesul interzis." msgid "Can not find signon authentication script:" msgstr "Tipul autentificării" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Autentificarea hardware a eșuat" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nicio cheie valida de autentificare conectată" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Se autentifică..." @@ -7972,20 +7983,21 @@ msgstr "Tipuri MIME disponibile" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Gazda" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Timp de generare" @@ -8230,7 +8242,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Invalid field count in CSV input on line %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Denumire tabel" @@ -8515,7 +8527,7 @@ msgstr "Creare PDF" msgid "Displaying Column Comments" msgstr "Arată comentariile coloanei" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformare navigator" @@ -8582,7 +8594,7 @@ msgstr "Demarchează toate" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Schimbați sau reconfigurați server-ul master" @@ -8596,8 +8608,8 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8617,31 +8629,31 @@ msgid "Slave status" msgstr "Stare sclav" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabil" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID server" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Oricare utilizator" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8650,27 +8662,27 @@ msgstr "Oricare utilizator" msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8679,7 +8691,7 @@ msgstr "" "Când tabela Host este folosită, acest câmp este ignorat și valorile din " "tabela Host sunt folosite în schimb." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generează parolă" @@ -8742,7 +8754,7 @@ msgstr "Detalii" msgid "Event name" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Tip eveniment" @@ -9133,7 +9145,7 @@ msgstr "Nu s-a găsit nici un tabel în baza de date." msgid "There are no events to display." msgstr "Nu există evenimente de afișat." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9143,7 +9155,7 @@ msgstr "Nu există evenimente de afișat." msgid "The %s table doesn't exist!" msgstr "Tabelul „%s” nu există!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9190,101 +9202,101 @@ msgstr "Proprietăți" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Creează o nouă pagină" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numărul paginii:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Așezare automată" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relații interne" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Selectează o pagină pentru a fi editată" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Selectează tabele" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Selectează tabele" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Denumirile coloanelor" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Schema relațională" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Arată grila" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Arată culoarea" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Arată dimensiunile tabelei" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Afișează toate tabelele cu aceeași lățime" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dicționar de date" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Vezi numai cheile" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Creare" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Mărime hîrtie" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9292,7 +9304,7 @@ msgstr "" "Pagina curentă se leagă de tabele care nu mai există. Doriți ștergerea " "acestor legături?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "dezactivare scratchboard" @@ -9603,7 +9615,7 @@ msgstr "Utilizatorul are acces la "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Utilizator" @@ -9748,8 +9760,8 @@ msgstr "Descriere utilizator" 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. " @@ -9814,11 +9826,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -9912,7 +9924,7 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" @@ -9925,12 +9937,12 @@ msgstr "Monitorizarea este activată." msgid "Tracking is not active." msgstr "Monitorizarea nu este activată." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" @@ -9961,14 +9973,14 @@ msgid "Column %s has been dropped" msgstr "Tabelul %s a fost aruncat" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primar" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9978,7 +9990,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tot textul" @@ -10006,7 +10018,7 @@ msgstr "Vizualizare relațională" msgid "Propose table structure" msgstr "Propune structura de tabele" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -10018,7 +10030,7 @@ msgstr "Trebuie să adăugați cel puțin un cîmp." msgid "Add column" msgstr "Adaugă %s cîmp(uri)" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -10043,15 +10055,15 @@ msgstr "După %s" msgid "Create an index on  %s columns" msgstr "Creează un index pe %s coloană" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamic" @@ -10059,15 +10071,15 @@ msgstr "dinamic" msgid "partitioned" msgstr "partiționat" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Lungime linie" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Mărime rând" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10117,15 +10129,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informație" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Utilizare spațiu" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efectiv" @@ -10167,7 +10179,7 @@ msgstr "" msgid "Move column" msgstr "Adaugă/șterge coloane" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10176,11 +10188,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:145 msgid "Transformation options" msgstr "Opțiuni de transformare" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10192,36 +10204,36 @@ msgstr "" "sau apostrof (\"'\") in aceste valori, introduceți backslash-uri (ex. '\\" "\\xyz' sau 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Nici unul(a)" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Conform definiției:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "După %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" @@ -10437,7 +10449,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Nu sînt baze de date" @@ -10736,29 +10748,29 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Fișiere" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Denumire jurnal" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Poziție" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Pozitie originală" @@ -10766,7 +10778,7 @@ msgstr "Pozitie originală" msgid "Character Sets and Collations" msgstr "Set de caractere și gestiunea acestora" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10775,24 +10787,24 @@ msgstr[0] "%s baza(ele) de data(e) au fost aruncate." msgstr[1] "%s baza(ele) de data(e) au fost aruncate." msgstr[2] "%s baza(ele) de data(e) au fost aruncate." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statisticile bazelor de date" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Activează statisticile" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10865,40 +10877,40 @@ msgstr "Drepturile au fost reîncarcate cu succes." msgid "Unknown error" msgstr "Eroare necunoscută" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Nu s-a putut realiza conexiunea la master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nu s-a putut citi poziția jurnalului master. Posibilă eroare de permisiuni " "pe master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Nu s-a putut schimba master-ul" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Server master schimbat cu succes în %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Acest server este configurat ca master într-un proces de replicare." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Afișați status master" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Afișați sclavi conectați" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10907,11 +10919,11 @@ msgstr "" "Acest server nu este configurat ca master într-un proces de replicare. " "Doriți să îl configurați?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Configurare master" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10925,20 +10937,20 @@ msgstr "" "date), fie a ignora toate bazele de date implicit și a permite doar " "anumitora să fie duplicate. Va rugăm sa selectați modul:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Selectați baza de date" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10946,7 +10958,7 @@ msgstr "" "Acum, adăugați următoarele linii la sfârșitul secțiunii [mysqld] în fișierul " "dumneavoastră my.cnf, după care vă rugăm să restartați server-ul MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10956,99 +10968,99 @@ msgstr "" "ar trebui să vedeți un mesaj care vă informează că acest server este " "configurat ca master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Thread-ul SQL slave nu rulează!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Thread-ul IO slave nu rulează!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server-ul este configurat ca slave într-un proces de replicare. Doriți să:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tot textul" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Tot textul" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Numai structura" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Numai structura" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -11056,157 +11068,157 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Gestionar" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Cache interogări" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Fire" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Date temporare" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Cache cheie" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Joncțiuni" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortare" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: server_status.php:645 +#: server_status.php:644 #, fuzzy msgid "Flush (close) all tables" msgstr "Aruncă (închide) toate tabelele" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Afișează stare sclav" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informații rulare" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Număr de rânduri:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Reîncarcă" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Fișiere" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nu schimbați parola" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Afișează tabele deschise" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Afișează tabele deschise" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Legături" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tip interogare" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introducere" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11214,118 +11226,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Comenzi" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Acest server MySQL rulează de %s. S-a lansat la %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Recepționat" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Trimis" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Comanda" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11333,11 +11345,11 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11345,68 +11357,68 @@ msgstr "" "Numărul de tabele temporare create automat în memorie de căter server în " "timpul execuției de interogări." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11414,7 +11426,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11422,42 +11434,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Numărul de cereri de a insera un rînd într-un tabel." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Numărul de pagini conținînd date (curate sau murdare)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11465,33 +11477,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11500,248 +11512,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Numărul total de citiri de date." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Numărul total de scrieri de date." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Cantitatea totală de date scrisă până acum, în bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "The number of doublewrite writes that have been performed and the number of " "pages that have been written for this purpose." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "The number of fsyncs writes done to the log file." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formatul fișierului importat" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11749,99 +11761,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11849,18 +11861,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11868,74 +11880,74 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Monitorizarea nu este activată" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Dum" -#: server_status.php:1745 +#: server_status.php:1744 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introducere" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Adaugă %s cîmp(uri)" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Introducere" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11944,7 +11956,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11952,18 +11964,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11971,11 +11983,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11983,91 +11995,91 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Redenumire bază de date în" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Selectează tabele" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Denumire de tabel nevalidă" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adaugă un server nou" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "Comanda SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statisticile rîndului" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Perioada selectată:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tip interogare" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12076,7 +12088,7 @@ msgstr[0] "pe secundă" msgstr[1] "pe secundă" msgstr[2] "pe secundă" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12200,19 +12212,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Variabile și configurări de server" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Valoare sesiune" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Valoare globală" @@ -12507,44 +12519,44 @@ msgstr "" msgid "Wrong data" msgstr "Nu sînt baze de date" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generat de" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etichetă" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12704,17 +12716,17 @@ msgstr "Regim de redactare" msgid "Index name:" msgstr "Nume index :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tip index :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Adaugă la coloana(ele) index  %s " @@ -12888,38 +12900,38 @@ msgstr "Modul de export" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format msgid "Deactivate tracking for %s" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Creare relație" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Creare relație" @@ -13287,8 +13299,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13422,8 +13434,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ru.po b/po/ru.po index 7796c71cde..525ab420e3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-27 17:27+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"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: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Номер страницы:" @@ -40,36 +40,36 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Поиск" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Поиск" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Имя индекса" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Использовать это значение" @@ -120,18 +120,18 @@ msgstr "База данных %1$s была создана." msgid "Database comment: " msgstr "Комментарий к базе данных: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Комментарий к таблице" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Поле" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Поле" msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "По умолчанию" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "По умолчанию" msgid "Links to" msgstr "Связи" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Связи" msgid "Comments" msgstr "Комментарии" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Комментарии" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Нет" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Нет" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Выделить все" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "База данных %1$s переименована в %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "База данных %1$s скопирована в %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения " "причины нажмите %sздесь%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Таблица" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Строки" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Размер" @@ -345,7 +345,7 @@ msgstr "используется" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Создание" @@ -353,7 +353,7 @@ msgstr "Создание" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Последнее обновление" @@ -361,7 +361,7 @@ msgstr "Последнее обновление" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Последняя проверка" @@ -378,7 +378,7 @@ msgid "You have to choose at least one column to display" msgstr "" "Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Переключиться на %sвизуальный составитель запросов%s" @@ -410,9 +410,9 @@ msgstr "Отслеживаемые таблицы" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "База данных" @@ -430,66 +430,66 @@ msgstr "Обновлён" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Состояние" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Действие" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Показать" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Удалить данные слежения за таблицей" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Удалить" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "включено" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "выключено" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Версии" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Обзор структуры" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Отслеживать таблицу" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Журнал базы данных" @@ -505,12 +505,12 @@ msgstr "Выбранный тип экспорта возможен только msgid "Bad parameters!" msgstr "Ошибочные параметры!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." @@ -532,117 +532,124 @@ msgstr "Дамп был сохранен в файл %s." msgid "Invalid export type" msgstr "Ошибочный тип экспорта" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Значение для поля \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Используйте в качестве основного слоя OpenStreetMaps" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Добавить точку" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Линия" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Внешний контур" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Внутренний контур" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Добавить линию" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Добавить внутренний контур" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Многоугольник" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Добавить многоугольник" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Добавить геометрии" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Вывод" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Из поля функции выберите \"GeomFromText\" и вставьте строку ниже, как " "значение" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Ошибка при чтении файла" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -652,7 +659,7 @@ msgstr "" "может быть импортирован. Поддержка данного метода еще не реализована, либо " "отключена при конфигурировании." -#: import.php:400 +#: import.php:404 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 " @@ -662,28 +669,28 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. Смотрите [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Без необходимой библиотеки невозможна конвертация кодировки файла" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Отсутствуют модули импорта. Проверьте содержимое установленной копии " "phpMyAdmin!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт успешно завершен, запросов выполнено: %d." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -692,7 +699,7 @@ msgstr "" "его выбрав тот же файл, и процесс продолжится с того места на котором " "остановился." -#: import.php:513 +#: import.php:517 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." @@ -701,9 +708,9 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-запрос был успешно выполнен" @@ -717,7 +724,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." @@ -726,7 +733,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных) msgid "Do you really want to execute \"%s\"?" msgstr "Вы действительно хотите выполнить запрос \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -766,7 +773,7 @@ msgstr "Добавить индекс" msgid "Edit Index" msgstr "Редактировать индекс" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Добавить %d поле(я) к индексу" @@ -816,24 +823,24 @@ msgstr "Закрыть" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Изменить" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Графический вывод трафика" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Графический вывод соединений и процессов" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Графический вывод запросов" @@ -843,24 +850,24 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Другое" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -880,7 +887,7 @@ msgstr "Трафик сервера (в KiB)" msgid "Connections since last refresh" msgstr "Соединений с момента последнего обновления" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процессы" @@ -898,7 +905,7 @@ msgstr "Вопросов с момента последнего обновлен msgid "Questions (executed statements by the server)" msgstr "Вопросы (выражения выполненные сервером)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Статистика запросов" @@ -944,13 +951,13 @@ msgstr "Система подкачки" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -1002,32 +1009,32 @@ msgstr "Отослано байт" msgid "Bytes received" msgstr "Принято байт" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Соединения" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЭБ" @@ -1041,11 +1048,11 @@ msgstr "%d таблиц(а)" msgid "Questions" msgstr "Вопросы" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Настройки" @@ -1066,12 +1073,12 @@ msgid "Please add at least one variable to the series" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Нет" @@ -1172,7 +1179,7 @@ msgstr "Изменить настройки" msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Заголовок графика" @@ -1261,7 +1268,7 @@ msgstr "Анализ результатов" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Время" @@ -1357,8 +1364,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1570,12 +1577,12 @@ msgstr "Время выполнения запроса" msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Сохранить" @@ -1633,8 +1640,8 @@ msgstr "Результаты запроса" msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Игнорировать" @@ -1746,7 +1753,7 @@ msgstr "Вывести строку(и) данных" msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Генерировать" @@ -1845,63 +1852,63 @@ msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Дек" @@ -1939,32 +1946,32 @@ msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Сб" @@ -2078,19 +2085,19 @@ msgstr "Неожиданные символы на строке %s" #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " -"\"%2$s\"" +"Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден \"%2" +"$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "в секунду" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "в минуту" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "в час" @@ -2107,7 +2114,7 @@ msgstr "Максимальный размер: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документация" @@ -2130,14 +2137,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Ошибка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-запрос" @@ -2155,211 +2162,211 @@ msgstr "SQL-запрос" msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с SQL валидатором!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Выполнить запрос" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Обновить" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Проверка синтаксиса" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Быстрое редактирование запроса" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Профилирование" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Вс" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Отсутствующий параметр:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Предыдущая" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Следующая" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Конец" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вставить" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Обзор" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операции" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Очистить" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Выполнить" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Печать" @@ -2378,98 +2385,98 @@ msgstr "" msgid "Font size" msgstr "Размер шрифта" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "По возрастанию" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "По убыванию" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Отсортировать" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критерий" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Добавить/удалить строки критериея" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Добавить/удалить столбцы" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Дополнить запрос" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Использовать таблицы" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Или" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "И" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Вставить" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Удалить" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Изменить" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "любое из слов" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "все слова" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "точное соответствие" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "регулярное выражение" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результаты поиска по \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2477,7 +2484,7 @@ msgstr[0] "Итого: %s соответствие" msgstr[1] "Итого: %s соответствия" msgstr[2] "Итого: %s соответствий" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -2485,44 +2492,44 @@ msgstr[0] "%1$s соответствие в таблице %2$s msgstr[1] "%1$s соответствия в таблице %2$s" msgstr[2] "%1$s соответствий в таблице %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Удалить" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Поиск в базе данных" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова или значения для поиска (групповой символ: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Искать:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Слова разделяются пробелом (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "В таблицах:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "В поле:" @@ -2567,8 +2574,8 @@ msgstr "Заголовки каждые %s строк" msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2645,7 +2652,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Завершить" @@ -2664,8 +2671,8 @@ msgstr "по запросу" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2678,7 +2685,7 @@ msgstr "Отображает строки" msgid "total" msgstr "всего" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Запрос занял %01.4f сек." @@ -2689,7 +2696,7 @@ msgstr "Запрос занял %01.4f сек." #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "С отмеченными:" @@ -2699,8 +2706,8 @@ msgstr "С отмеченными:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Отметить все" @@ -2740,17 +2747,17 @@ msgstr "" "Слишком большое количество сообщений об ошибках, некоторые из которых не " "отображаются." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Файл не был загружен." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2758,27 +2765,27 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2786,11 +2793,11 @@ msgstr "" "Ошибка при перемещении загруженного файла, смотрите [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Ошибка при перемещении загруженного файла." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Невозможно прочесть (переместить) загруженный файл." @@ -2799,66 +2806,66 @@ msgstr "Невозможно прочесть (переместить) загр msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Для полноценной работы необходима поддержка Javascript браузером" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Индекс не определен!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Индексы" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Сравнение" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Комментарий" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Первичный ключ был удален" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Индекс %s был удален" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2867,12 +2874,12 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Базы данных" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" @@ -2940,18 +2947,18 @@ msgstr "Пользователи" msgid "Synchronize" msgstr "Синхронизировать" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Бинарный журнал" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Репликация" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Переменные" @@ -3089,8 +3096,8 @@ msgstr "" "перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, " "проверьте изменена ли структура таблицы." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3100,11 +3107,11 @@ msgstr "Функция" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Значение" @@ -3112,62 +3119,62 @@ msgstr "Значение" msgid "Table Search" msgstr "Поиск в таблице" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Редактировать/Вставить" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Выберите поля (не менее одного):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Количество строк на странице" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Сортировка:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Использовать данное поле для обозначения каждой точки" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Максимальное количество строк для построения" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Добавочный критерий поиска" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Выполнить \"запрос по образцу\" (символ шаблона: \"%\") для двух различных " "столбцов" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Обзор/Редакция точек" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Как использовать" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Сбросить увеличение" @@ -3239,8 +3246,8 @@ msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" -"Восьми-байтовое целое число, диапазон чисел со знаком от " -"-9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " +"Восьми-байтовое целое число, диапазон чисел со знаком от -" +"9,223,372,036,854,775,808 до 9,223,372,036,854,775,807, диапазон чисел без " "знака от 0 до 18,446,744,073,709,551,615" #: libraries/Types.class.php:305 libraries/Types.class.php:711 @@ -3254,20 +3261,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" -"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до " -"-1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" +"Малое число с плавающей точкой, допустимые значения от -3.402823466E+38 до -" +"1.175494351E-38, 0, и от 1.175494351E-38 до 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Число с плавающей точкой удвоенной точности, допустимые значения от " -"-1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " +"Число с плавающей точкой удвоенной точности, допустимые значения от -" +"1.7976931348623157E+308 до -2.2250738585072014E-308, 0, и от " "2.2250738585072014E-308 до 1.7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3314,8 +3321,8 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Временная метка, диапазон от \"1970-01-01 00:00:01\" UTC до \"2038-01-09 " -"03:14:07\" UTC, содержит количество секунд прошедших со времени " -"(\"1970-01-01 00:00:00\" UTC)" +"03:14:07\" UTC, содержит количество секунд прошедших со времени (\"1970-01-" +"01 00:00:00\" UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format @@ -3557,7 +3564,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Таблицы" @@ -3571,12 +3578,12 @@ msgstr "Таблицы" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Данные" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Фрагментировано" @@ -3685,7 +3692,7 @@ msgstr "Открыт" msgid "Closed" msgstr "Закрыт" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3823,22 +3830,22 @@ msgstr "Вики" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Эта настройка отключена и не будет применена при конфигурации" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Установить значение: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Восстановить изначальное значение" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Разрешить пользователям изменять данное значение" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Сбросить" @@ -4133,7 +4140,7 @@ msgstr "Кодировка файла" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4242,7 +4249,7 @@ msgstr "Идентификатор метки" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-тип" @@ -4278,7 +4285,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Заключить названия таблиц и полей в косые кавычки" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Режим совместимости SQL" @@ -5875,10 +5882,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Требуется подключенный SQL валидатор" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6157,53 +6164,61 @@ msgstr "Расширение %s не найдено. Пожалуйста, пр msgid "possible deep recursion attack" msgstr "возможная атака глубокой рекурсии" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" "Сервер не отвечает (либо локальный сокет сервера MySQL неверно настроен)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Сервер не отвечает." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Пожалуйста, проверьте привилегии каталога содержащего базу данных." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Детали..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Изменить пароль" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Без пароля" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Подтверждение" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Хеширование пароля" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Совместимо с MySQL 4.0" @@ -6335,8 +6350,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -6416,7 +6431,7 @@ msgstr "отправлено %1$s, %2$s" msgid "authored on %1$s by %2$s" msgstr "создано %1$s, %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6426,62 +6441,62 @@ msgstr "" "либо ошибка связана с использованием веб-ориентированных браузеров (Safari, " "Google Chrome, Arora и др.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s из %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Загрузка файла импорта..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/сек." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Осталось около %MIN мин. %SEC сек." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Осталось около %SEC сек." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Пожалуйста, подождите, файл находится в обработке." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "Пожалуйста, подождите, файл был загружен. Детали загрузки недоступны." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Импорт на текущий сервер" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Импорт в базу данных \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Импорт в таблицу \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Импортируемый файл:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Файл может быть сжат в архив (%s) или находиться без сжатия." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6568,71 +6583,71 @@ msgstr "" "Размер буфера памяти, который InnoDB использует для кеширования данных и " "индексов своих таблиц." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Состояние InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Использование" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "страниц" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Чистых страниц" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Грязных страниц" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Страниц с данными" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Страниц к очистке" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Занятых страниц" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Блокированных страниц" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Активность" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Запросы на чтение" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Запросы на запись" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Пропуски при чтении" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Ожидание очистки" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Пропуски при чтении, в %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Ожидание очистки, в %" @@ -6868,8 +6883,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -6886,125 +6901,125 @@ msgstr "Блог Пола Маккалаха (Paul McCullagh) посвященн msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Просмотреть детали структуры нажав на её имя" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Отредактировать структуру перейдя по ссылке \"Структура\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Перейти к базе данных: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Отредактировать настройки для %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Перейти к таблице: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Структура %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Перейти к представлению (VIEW): %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Скрыть" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Двоичный" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Из-за большого количества данных
изменение поля невозможно" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Из каталога загрузки" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7048,7 +7063,7 @@ msgstr "Добавить префикс таблицы" msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" @@ -7335,7 +7350,7 @@ msgstr "Параметры таблицы" msgid "Rename table to" msgstr "Переименовать таблицу в" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Тип таблиц" @@ -7449,8 +7464,8 @@ msgstr "Добро пожаловать в %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7527,21 +7542,21 @@ msgstr "Данные для входа не верны. В доступе отк msgid "Can not find signon authentication script:" msgstr "Не найден скрипт авторизации методом signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Файл %s не содержит ключа идентификации" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Ошибка аппаратной идентификации" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Отсутствует действенный подключенный ключ идентификации" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Идентификация..." @@ -7678,20 +7693,21 @@ msgstr "Отобразить MIME типы" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Время создания" @@ -7949,7 +7965,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Несоответствие количества столбцов в CSV данных на строке %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Имя таблицы" @@ -8199,7 +8215,7 @@ msgstr "Создание PDF-схемы" msgid "Displaying Column Comments" msgstr "Отображать комментарии столбцов" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Преобразование" @@ -8271,7 +8287,7 @@ msgstr "Снять выделение" msgid "Slave configuration" msgstr "Настройка подчиненного сервера" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Изменить, или перенастроить головной сервер" @@ -8284,8 +8300,8 @@ msgstr "" "server-id. При необходимости, добавьте следующую строку в раздел [mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8305,15 +8321,15 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Переменная" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID сервера" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8321,17 +8337,17 @@ msgstr "" "Только подчиненные сервера запущенные с ключом --report-host=host_name " "видимы в данном списке." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Любой пользователь" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8340,27 +8356,27 @@ msgstr "Любой пользователь" msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8369,7 +8385,7 @@ msgstr "" "При использовании таблицы хостов, данное поле игнорируется и значения " "берутся из прописанных при конфигурации." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Создать пароль" @@ -8428,7 +8444,7 @@ msgstr "Детали" msgid "Event name" msgstr "Название события" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Тип события" @@ -8773,7 +8789,7 @@ msgstr "В базе данных %2$s не найдено событие с им msgid "There are no events to display." msgstr "Отсутствуют события для отображения." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8782,7 +8798,7 @@ msgstr "Отсутствуют события для отображения." msgid "The %s table doesn't exist!" msgstr "Таблица %s не существует!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8828,91 +8844,91 @@ msgstr "Атрибуты" msgid "Extra" msgstr "Дополнительно" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Создать новую страницу" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Название страницы" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Основание автоматической раскладки" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Внутренние связи" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Выбор страницы для редактирования" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Выберите страницу" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Выберите таблицы" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Названия столбцов" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Отобразить схему связей" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Выберите тип экспорта связей" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Отображать сетку" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Отображать в цвете" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Отображать размерность таблиц" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Показать все таблицы одинаковой ширины" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Словарь данных" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Показывать только ключи" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Альбомная" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Книжная" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Ориентация" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Размер бумаги" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8920,7 +8936,7 @@ msgstr "" "На текущей странице присутствуют ссылки на таблицы, которые больше не " "существуют. Удалить эти ссылки?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Отображение" @@ -9231,7 +9247,7 @@ msgstr "Пользователи с правами доступа к "%s&qu #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Пользователь" @@ -9367,8 +9383,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. Содержимое этих таблиц может " @@ -9429,11 +9445,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -9528,7 +9544,7 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" @@ -9541,12 +9557,12 @@ msgstr "Слежение включено." msgid "Tracking is not active." msgstr "Слежение выключено." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" @@ -9574,14 +9590,14 @@ msgid "Column %s has been dropped" msgstr "Поле %s было удалено" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Первичный" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Индекс" @@ -9591,7 +9607,7 @@ msgid "Spatial" msgstr "Пространственный" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Полнотекстовый" @@ -9615,7 +9631,7 @@ msgstr "Связи" msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." @@ -9623,7 +9639,7 @@ msgstr "Необходимо добавить хотя бы одно поле." msgid "Add column" msgstr "Добавить столбец" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Добавить %s поле(я)" @@ -9646,15 +9662,15 @@ msgstr "После %s" msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s столбца/ов" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статистика строк" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "статический" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамический" @@ -9662,15 +9678,15 @@ msgstr "динамический" msgid "partitioned" msgstr "разделён" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Длина строки" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Размер строки" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Следующий автоматический индекс" @@ -9716,15 +9732,15 @@ msgstr "Добавить пространственный индекс" msgid "Add FULLTEXT index" msgstr "Добавить полнотекстовый индекс" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Информация" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Используемое пространство" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Эффективность" @@ -9757,7 +9773,7 @@ msgstr "" msgid "Move column" msgstr "Переместить поле" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9766,11 +9782,11 @@ msgstr "" "Для просмотра доступных MIME-типов и параметров преобразований " "воспользуйтесь данной ссылкой - %sописание преобразований%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Параметры преобразований" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9782,33 +9798,33 @@ msgstr "" "необходимо экранировать (предварять) символом обратной косой черты, " "например: '\\\\xyz' или 'a\\'b'." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Много данных ENUM или SET?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Открыть расширенный редактор" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Нет" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Как определено:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "первый" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "после %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" @@ -10015,7 +10031,7 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Базы данных отсутствуют" @@ -10294,29 +10310,29 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файлов" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Файл журнала" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Позиция" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Исходная позиция" @@ -10324,7 +10340,7 @@ msgstr "Исходная позиция" msgid "Character Sets and Collations" msgstr "Кодировки и сравнения" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -10332,24 +10348,24 @@ msgstr[0] "%1$d база данных была успешно удалена." msgstr[1] "%1$d базы данных были успешно удалены." msgstr[2] "%1$d баз данных было успешно удалено." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статистика баз данных" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Репликация головного сервера" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Включить статистику" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10419,40 +10435,40 @@ msgstr "Привилегии были успешно перезагружены. msgid "Unknown error" msgstr "Неизвестная ошибка" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Невозможно соединиться с головным сервером %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Невозможно прочесть позицию журнала у головного сервера. Вероятно проблема в " "настройке привилегий головного сервера." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Невозможно изменить головной сервер" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Головной сервер успешно изменён на %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Показать состояние головного сервера" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10461,11 +10477,11 @@ msgstr "" "Данный сервер не настроен в качестве головного для процесса репликации. " "Хотите произвести настройку?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Настройка головного сервера" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10479,19 +10495,19 @@ msgstr "" "выбрать игнорирование всех баз данных по умолчанию и разрешение для " "репликации только определенных. Пожалуйста, выберите желаемый режим:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Репликация всех баз данных; игнорировать:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Игнорировать все базы данных; репликация:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Пожалуйста, выберите базы данных:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10499,7 +10515,7 @@ msgstr "" "Теперь добавьте данные строки в конец раздела [mysqld] конфигурационного " "файла my.cnf, после чего перезапустите сервер MySQL." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10509,84 +10525,84 @@ msgstr "" "чего вы должны увидеть сообщение указывающее, что данный сервер настроен как головной" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Подчиненный SQL поток не запущен!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Подчиненный поток ввода-вывода не запущен!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер настроен в качестве подчиненного для процесса репликации. Произвести " "действие:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Смотрите таблицу состояния подчинённого сервера" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Синхронизировать базы данных с головным сервером" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Контролировать подчинённый сервер:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Полный запуск" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Полная остановка" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Сбросить подчиненный сервер" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Запустить только SQL поток" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Остановить только SQL поток" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Запустить только поток ввода-вывода" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Остановить только поток ввода-вывода" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Управление ошибками:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Игнорирование ошибок может привести к рассинхронизации головного и " "подчинённого сервера!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Игнорировать текущую ошибку" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Пропустить следующую" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "ошибки." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10595,12 +10611,12 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10608,121 +10624,121 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Обработчик" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Кеш запросов" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Потоки" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Временные данные" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Отложенные вставки" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Кеш индекса" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Объединения" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Координатор транзакций" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Закрыть все таблицы" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Список открытых таблиц" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Информация о состоянии сервера репликации" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Дефрагментировать кеш запросов" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Текущее состояние MySQL" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Все переменные состояния" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Монитор" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Советчик" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Количество строк:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Частота обновления: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Фильтры" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Содержит слово:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Выводить только предупреждающие значения" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Фильтр по категории..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Выводить неотформатированные значения" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Связанные ссылки:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Запустить анализ" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10730,7 +10746,7 @@ msgstr "" "Система советов может предоставлять рекомендации по переменным сервера, " "основываясь на анализе их статуса." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10739,7 +10755,7 @@ msgstr "" "Однако, данная система предоставляет рекомендации основываясь на " "примитивных подсчетах и может быть не применима к вашему серверу." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10749,7 +10765,7 @@ msgstr "" "(прочитайте документацию) и знаете как отменить настройки. Ошибочная " "настройка может отрицательно сказаться на производительности." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10761,31 +10777,31 @@ msgstr "" "работе." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Вопросов начиная с запуска: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Характеристика" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "Кол-во" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Сервер MySQL работает %1$s. Запущен %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10793,16 +10809,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10810,11 +10826,11 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10822,35 +10838,35 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Принято" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Отправлено" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Команда" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10858,11 +10874,11 @@ msgstr "" "Количество прерванных соединений в связи с потерей связи и неверно закрытым " "соединением клиента." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10872,16 +10888,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10893,11 +10909,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10905,7 +10921,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10913,31 +10929,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Количество обрабатываемых запросов INSERT DELAYED." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10947,7 +10963,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10958,7 +10974,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10967,7 +10983,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10977,7 +10993,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10985,7 +11001,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10998,7 +11014,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11010,39 +11026,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11052,7 +11068,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11064,11 +11080,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11076,7 +11092,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11085,11 +11101,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11097,7 +11113,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11111,55 +11127,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11167,36 +11183,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11205,51 +11221,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11257,7 +11273,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11265,7 +11281,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11274,16 +11290,16 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" "Процентное соотношение использованного кеша ключей (подсчитанное значение)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11294,7 +11310,7 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11302,22 +11318,22 @@ msgstr "" "Промахи кеша ключей рассчитываются, как соотношение физических чтений " "сравнительно к запросам чтения (подсчитанное значение)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Процентное соотношение физических процессов записи сравнительно к запросам " "записи (подсчитанное значение)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11328,7 +11344,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11336,11 +11352,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11348,20 +11364,20 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (в основном применяется к файлам журналов)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11371,21 +11387,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11398,7 +11414,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11406,19 +11422,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11426,13 +11442,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11441,7 +11457,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11450,18 +11466,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11469,13 +11485,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11483,12 +11499,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11497,28 +11513,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11530,7 +11546,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11540,11 +11556,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11556,47 +11572,47 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Запустить монитор" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Инструкции/Настройки" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Завершено редактирование графиков" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Добавить график" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Упорядочить/отредактировать графики" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Столбцы графика" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Расположение гарфика" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11604,15 +11620,15 @@ msgstr "" "Расположения графиков сохраняются в локальном хранилище браузера. При " "наличии сложной настройки, вы можете осуществить ее экспорт." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Восстановить изначальное значение" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Инструкции мониторинга" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11626,7 +11642,7 @@ msgstr "" "general_log. Будьте внимательны, включение general_log производит увеличение " "хранимых данных и увеличивает нагрузку на сервер до 15%." -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11638,11 +11654,11 @@ msgstr "" "phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " "Однако, вы все еще можете использовать функции графиков сервера." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Использование мониторинга:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11653,7 +11669,7 @@ msgstr "" "настройках, или удалить график используя соответствующую иконку на каждом из " "них." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11665,11 +11681,11 @@ msgstr "" "будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " "любые выражения SELECT, для их последующего анализа." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Примечание:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11682,79 +11698,79 @@ msgstr "" "небольшие промежутки времени, а так же отключать general_log и очищать его " "таблицу, когда мониторинг больше не требуется." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Заготовки графиков" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Переменные состояния" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Выберите серии:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Частый мониторинг" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "или задайте имя переменной:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Отобразить в виде значения разницы" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Применить делитель" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Добавить к значениям единицу измерения" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Добавить данные серии" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Очистить серии" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Серии в графике:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Статистика журналов" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Выбранный диапазон времени:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Выберите из какого журнала должна генерироваться статистика." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Результаты сгруппированы по тексту запроса." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Анализ запроса" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11762,7 +11778,7 @@ msgstr[0] "%d секунда" msgstr[1] "%d секунды" msgstr[2] "%d секунд" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11881,19 +11897,19 @@ msgstr "" "Целевая база данных будет полностью синхронизована с источником. База данных " "источника останется неизменной." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Не удалось установить переменную" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Серверные переменные и настройки" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Значение сессии" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобальное значение" @@ -12176,8 +12192,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - " -"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - %" +"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -12243,42 +12259,42 @@ msgstr "Ключ должен содержать символы алфавита msgid "Wrong data" msgstr "Ошибочные данные" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Результат SQL-запроса" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Создан" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Поля были успешно перемещены." @@ -12409,16 +12425,16 @@ msgstr "Редактировать индекс" msgid "Index name:" msgstr "Имя индекса :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Имя \"PRIMARY\" должен иметь только первичный индекс!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тип индекса :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавить к индексу %s столбец(ы)" @@ -12582,38 +12598,38 @@ msgstr "Экспортировать как %s" msgid "Show versions" msgstr "Показать версии" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Выключить слежение за %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Выключить" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Включить слежение за %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Включить" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Создать версию %1$s из %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Создать версию" @@ -13005,8 +13021,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Текущее соотношение свободного кеша запросов по отношению к полному кешу " "запросов составляет %s%%. Значение должно быть выше 80%%" @@ -13163,8 +13179,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% сортировок вызывает создание временных таблиц, данное значение должно " "быть ниже 10%%." diff --git a/po/si.po b/po/si.po index bf8102f810..51f7be186f 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-01 05:43+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" -"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "පිටු අංකය:" @@ -38,36 +38,36 @@ msgstr "" "ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " "ආරක්ෂක සැකසුම් අන්තර් කවුළු යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "සෙවීම" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "සෙවීම" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "යන්න" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "යතුරු නම" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "විස්තරය" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "මෙම අගය භාවිතා කරන්න" @@ -116,18 +116,18 @@ msgstr "%1$s දත්තගබඩාව සාදන ලදි." msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,18 +135,18 @@ msgstr "වගු විස්තර" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "තීර" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -163,11 +163,11 @@ msgstr "තීර" msgid "Type" msgstr "වර්ගය" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -179,9 +179,9 @@ msgstr "වර්ගය" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -194,8 +194,8 @@ msgstr "Null" msgid "Default" msgstr "පෙරනිමි" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -203,11 +203,11 @@ msgstr "පෙරනිමි" msgid "Links to" msgstr "සම්බන්ද වන්නේ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -216,12 +216,12 @@ msgstr "සම්බන්ද වන්නේ" msgid "Comments" msgstr "විස්තරය" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -232,23 +232,23 @@ msgstr "විස්තරය" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "නැත" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -260,8 +260,8 @@ msgstr "නැත" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ඔව්" @@ -271,33 +271,33 @@ msgid "View dump (schema) of database" msgstr "දත්තගබඩාවේ නික්ෂේපනය (ක්‍රමානුරූපය) දර්ශනය කරන්න" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "සියල්ල තෝරන්න" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s දත්තගබඩාව %2$s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s දත්තගබඩාව %2$s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -306,12 +306,12 @@ msgstr "" "phpMyAdmin හි configuration storage අක්‍රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් " "කරන්න." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -321,14 +321,14 @@ msgstr "වගුව" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "පේළි" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "ප්‍රමාණය" @@ -341,7 +341,7 @@ msgstr "භාවිතා වෙමින් පවතී" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "සෑදීම" @@ -349,7 +349,7 @@ msgstr "සෑදීම" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "අවසන් යාවත්කාලීන කිරීම" @@ -357,7 +357,7 @@ msgstr "අවසන් යාවත්කාලීන කිරීම" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" @@ -372,7 +372,7 @@ msgstr[1] "%s වගු" msgid "You have to choose at least one column to display" msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sදෘශ්‍ය ගොඩනංවනය%s වෙත යන්න" @@ -404,9 +404,9 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "දත්තගබඩාව" @@ -424,67 +424,67 @@ msgstr "යාවත්කාලීන කරන ලදි" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "තත්වය" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "ක්‍රියාව" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "පෙන්වන්න" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "හලන්න" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "සක්‍රිය" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "අක්‍රිය" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "අනුවාද" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "අවධානය පිළිබඳ වාර්තාව" # සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "සැකිල්ලේ සැණරුව" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "අවධානය අක්‍රීය වගු" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "වගුව අවධානයට ලක් කරන්න" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "දත්තගබඩා ලොගය" @@ -500,12 +500,12 @@ msgstr "තෝරාගත් අපනයන වර්ගය ගොනුව msgid "Bad parameters!" msgstr "වැරදි පරාමිතියන්!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s ගොනුව සුරැකීමට ප්‍රමාණවත් ඉඩ අවකාශ නොමැත." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -518,7 +518,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "වෙබ් සේවාදායකයට %s ගොනුව සුරැකීමට අවසර නොමැත." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." @@ -527,123 +527,130 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි msgid "Invalid export type" msgstr "වැරදි අපනයන වර්ගයකි" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" තීරය සඳහා අගයන්" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "මූලික ස්ථරය ලෙස OpenStreetMaps භාවිතා කරන්න" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "ජ්‍යාමිතිය" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "ලක්ෂ්‍යය" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%dවන ලක්ෂ්‍යය" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "ලක්ෂ්‍යයක් එක් කරන්න" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "රේඛාව" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "පිටත කවය" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "ඇතුලත කවය" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "රේඛාවක් එක් කරන්න" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "ඇතුල් කවයක් එක් කරන්න" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "බහු අස්‍රය" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "බහු අස්‍රයක් එක් කරන්න" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "ජ්‍යාමිතියක් එක් කරන්න" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "ප්‍රතිදානය" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "\"ශ්‍රිතය\" තීරුවෙන් \"GeomFromText\" තෝරා පහත ඇති දේ \"අගය\" ක්ෂේත්‍රයට පිටපත් කරන්න" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර %sලියකියවිලි" -"%s බලන්න." +"ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර %sලියකියවිලි%" +"s බලන්න." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "පොත් සලකුණ ඉවත් කරන ලදි." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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 " @@ -653,26 +660,26 @@ msgstr "" "විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] බලන්න." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තකාලය නොමැතිව ගොනුවේ අක්ෂර කට්ටලය හැරවීම කල නොහැක" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ආනයනය සාර්ථකව අවසන් කරන ලදි, විමසුම්%d ක්‍රියාත්මක කරන ලදි." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -680,7 +687,7 @@ msgstr "" "විධානාවලිය ක්‍රියාත්මක වීමට ලබා දුන් කාලය අවසන් විය. ඔබට ආනයනය සම්පූර්ණ කිරීමට අවශ්‍ය නම් එම " "ආනයන ගොනුවම නැවත ආනයනය සඳහා යොමු කරන්න." -#: import.php:513 +#: import.php:517 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." @@ -688,9 +695,9 @@ msgstr "" "කෙසේ නමුදු අවසන් වාරයේදී කිසිදු දත්තයක් ලබා ගත නොහැකි විය. මෙයින් අදහස් වන්නේ ඔබගේ php කාල " "සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්‍රියාවට නංවන ලදි" @@ -704,7 +711,7 @@ msgstr "ආපසු" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "frame සහය ඇති බ්‍රව්සර සමග phpMyAdmin වඩා හොඳින් ක්‍රියා කරයි." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." @@ -713,7 +720,7 @@ msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇ msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -753,7 +760,7 @@ msgstr "සුචිය එක් කරන්න" msgid "Edit Index" msgstr "සුචිය සංස්කරණය කරන්න" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "සුචියට ක්ෂේත්‍ර %d ක් එක් කරන්න" @@ -803,24 +810,24 @@ msgstr "වසන්න" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "සජීවී දත්ත හුවමාරු ප්‍රස්තාරය" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "සජීවී සබඳතා/ක්‍රියාවලි ප්‍රස්තාරය" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "සජීවී විමසුම් ප්‍රස්තාරය" @@ -830,24 +837,24 @@ msgstr "ස්ථිතික දත්ත" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "මුළු එකතුව" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "අනෙකුත්" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -867,7 +874,7 @@ msgstr "සේවාදායකයේ තදබදය (KiB වලින්)" msgid "Connections since last refresh" msgstr "අවසන් යාවත්කාලින කිරීමේ සිට සබැඳුම්" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "ක්‍රියාවලි" @@ -885,7 +892,7 @@ msgstr "අවසන් යාවත්කාලින කිරීමේ සි msgid "Questions (executed statements by the server)" msgstr "ප්‍රශ්න (සේවාදායකය විසින් ක්‍රියාත්මක කරන ලද ප්‍රකාශ)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "විමසුම් සංඛ්‍යාලේඛන" @@ -927,13 +934,13 @@ msgstr "පද්ධතියේ ප්‍රතිහරණය" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -985,32 +992,32 @@ msgstr "යැවුණු බයිට ගණන" msgid "Bytes received" msgstr "ලැබුණු බයිට ගණන" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "සම්බන්ධතා" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1024,11 +1031,11 @@ msgstr "වගු %d" msgid "Questions" msgstr "ප්‍රශ්න" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "තදබදය" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "සිටුවම්" @@ -1049,12 +1056,12 @@ msgid "Please add at least one variable to the series" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "කිසිවක් නැත" @@ -1154,7 +1161,7 @@ msgstr "සිටුවම් වෙනස් කිරීම" msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "ප්‍රස්තාර මාතෘකාව" @@ -1234,7 +1241,7 @@ msgstr "ප්‍රතිදානය පහදන්න" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "කාලය" @@ -1329,8 +1336,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" @@ -1543,12 +1550,12 @@ msgstr "විමසුම ක්‍රියාත්මක කිරීමේ msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "සුරකින්න" @@ -1604,8 +1611,8 @@ msgstr "විමසුම් ප්‍රථිඵල" msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "නොසලකන්න" @@ -1711,7 +1718,7 @@ msgstr "දත්ත පේළි(ය) පෙන්වන්න" msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "උත්පාදනය කරන්න" @@ -1810,63 +1817,63 @@ msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "දෙසැම්බර්" @@ -1904,32 +1911,32 @@ msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "සෙනසු" @@ -2042,16 +2049,16 @@ msgstr "%s වන පේළියේ අනපේක්ෂිත අනුලක msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "%1$s වන පේළියේ අනපේක්ෂිත අනුලකුණකි. ටැබයක් අපේක්ෂිත නමුත් \"%2$s\" හමුවිය" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "තප්පරයකට" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "මිනිත්තුවකට" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "පැයකට" @@ -2068,7 +2075,7 @@ msgstr "උපරිම: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "ලියකියවිලි" @@ -2091,14 +2098,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "දෝෂය" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL විමසුම" @@ -2116,210 +2123,210 @@ msgstr "SQL විමසුම" msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL සත්‍යාපනයෙන් ඉවත් වන්න" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL සත්‍යාපනය" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "ඉරිදා" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y දින %I:%M %p ට" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "නොමැති පරාමිතිය:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "ඇරඹුම" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "පෙර" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "මීලඟ" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "අවසන" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "සැකිල්ල" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "පිරික්සන්න" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "හිස් කරන්න" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "මුද්‍රණය කරන්න" @@ -2336,149 +2343,149 @@ msgstr "වින්‍යාස ගොනුව සඳහා වැරදි msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ආරෝහන" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "අවරෝහන" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "සුබෙදන්න" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "නිර්ණායක" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "තීර එක් කරන්න/ඉවත් කරන්න" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "විමසුම යාවත්කාලීන කරන්න" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "වගු භාවිතා කරන්න" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "හෝ" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "සහ" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "ඇතුල්" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "ඉවත්" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "වෙනස් කිරීම" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "%s දත්තගබඩාව මත SQL විමසුම:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "සියලු වචන" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "හරියටම වාක්‍යාංශය" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "regular expression ලෙස" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළුල:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "එකතුව: %s ගැලපුමයි" msgstr[1] "එකතුව: ගැලපුම් %s යි" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s තුල ගැලපීම් %1$s කි" msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "ඉවත් කරන්න" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "දත්තගබඩාවේ සොයන්න" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "සොයන්න:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "වචන වෙන් කෙරෙන්නේ හිස් තැනකිනි(\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "වගු තුල:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "තීරය තුල:" @@ -2523,8 +2530,8 @@ msgstr "ශීර්ෂක, පේළි %s කට වරක්" msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2601,7 +2608,7 @@ msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "නවතා දමන්න" @@ -2620,8 +2627,8 @@ msgstr "විමසුම තුල" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 අධ්‍යනය කරන්න." @@ -2633,7 +2640,7 @@ msgstr "පේළි පෙන්වමින්" msgid "total" msgstr "මුළු එකතුව" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" @@ -2644,7 +2651,7 @@ msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "තෝරාගත්:" @@ -2654,8 +2661,8 @@ msgstr "තෝරාගත්:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" @@ -2693,41 +2700,41 @@ msgstr "සබැඳිය හමු නොවිණි" msgid "Too many error messages, some are not displayed." msgstr "දෝෂ පණිවුඩ ප්‍රමාණය ඉක්මවා ගොස් ඇත, ඇතැමෙක් ප්‍රදර්ශනය නොකෙරේ." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "ගොනුව උඩුගත කරන ලද්දක් නොවේ." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2735,11 +2742,11 @@ msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "උඩුගත කරන ලද ගොනුව කියවීමට නොහැක." @@ -2748,66 +2755,66 @@ msgstr "උඩුගත කරන ලද ගොනුව කියවීමට msgid "Open new phpMyAdmin window" msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "සුචියක් අර්ථදක්වා නැත!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "සූචියන්" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "අනන්‍ය" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "පරිතුලනය" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "ටීකාව" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "ප්‍රාථමික මූලය හලන ලදි" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s සූචිය හලන ලදි" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2816,12 +2823,12 @@ msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එ #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "දත්තගබඩා" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "සේවාදායකය" @@ -2889,18 +2896,18 @@ msgstr "භාවිතා කරන්නන්" msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "ද්වීමය ලොගය" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "අනුරූකරණය" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "විචල්‍යනයන්" @@ -3033,8 +3040,8 @@ msgstr "" "අතුරුමුහුණත් විචල්‍යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්‍රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු " "ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ශ්‍රිතය" @@ -3044,11 +3051,11 @@ msgstr "ශ්‍රිතය" msgid "Operator" msgstr "මෙහෙයවනය" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "අගය" @@ -3056,60 +3063,60 @@ msgstr "අගය" msgid "Table Search" msgstr "වගුව තුල සෙවීම" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "සංස්කරණය/ඇතුල් කරන්න" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "පිටුවකට පේළි ගණන" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "ලක්ෂ්‍ය ලේබල ගත කිරීමට මෙම තීරය භාවිත කරන්න" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "උපරිම තීර ගණන" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "අමතර සෙවීම් නිර්ණායක" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "තීර දෙකක් සඳහා \"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "ලක්ෂ්‍ය පිරික්සීම/සංස්කරණය" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "භාවිතා කරන අයුරු" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "සූමය ප්‍රතිසකසන්න" @@ -3191,21 +3198,21 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "කුඩා දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -3.402823466E+38 සිට -1.175494351E-38, " "0, හා 1.175494351E-38 සිට 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට " -"-2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට " -"1.7976931348623157E+308" +"ද්වී-නියත දශම සංඛ්‍යාවකි, ලබා දිය හැකි අගයන් වන්නේ -1.7976931348623157E+308 විට -" +"2.2250738585072014E-308, 0, හා 2.2250738585072014E-308 සිට 1.7976931348623157E" +"+308" #: libraries/Types.class.php:311 msgid "" @@ -3481,7 +3488,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "වගු" @@ -3495,12 +3502,12 @@ msgstr "වගු" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "දත්ත" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "පිරිවැය" @@ -3604,7 +3611,7 @@ msgstr "විවෘත" msgid "Closed" msgstr "වසන ලද" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3742,22 +3749,22 @@ msgstr "විකි" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "මෙම සිටුවම අක්‍රීය කර ඇත, ඔබගේ වින්‍යාස සඳහා එය නොයෙදෙනු ඇත" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "%s අගය පිහිටුවන්න" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය කරන්න" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "මෙම අගය වෙනස් කිරීමට භවිතා කරන්නන්ට ඉඩ දෙන්න" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -4040,7 +4047,7 @@ msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "ආකෘතිය" @@ -4149,7 +4156,7 @@ msgstr "ලේබල යතුර" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME වර්ගය" @@ -4185,7 +4192,7 @@ msgid "Enclose table and column names with backquotes" msgstr "වගු සහ තීර නම් පසු-උදෘත මගින් අවුරන්න" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL ගැලපුම් ප්‍රකාරය" @@ -5692,10 +5699,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "SQL වලංගු කරණය සක්‍රීය කිරීම අවශ්‍ය වේ" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5953,52 +5960,60 @@ msgstr "%s දිගුව සොයාගත නොහැක. කරුණා msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි (හෝ සේවාදායකයේ සොකට් නිවැරදිව සකසා නැත)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "සේවාදායකය ප්‍රතිචාර නොදක්වයි." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්‍රසාද පරීක්ෂා කරන්න." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "තොරතුරු..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "මුරපදයක් නැත" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "මුරපදය hash කිරීම" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 අනුකූල" @@ -6132,12 +6147,12 @@ msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්‍රතිස් #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6211,7 +6226,7 @@ msgstr "%1$s %2$s විසින් එක් කරන ලද" msgid "authored on %1$s by %2$s" msgstr "%1$s %2$s විසින් රචිත" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6220,63 +6235,63 @@ msgstr "" "මෙය ඔබ උඩුගත කරන ගොනුව අවසරැති ප්‍රමාණයට වඩා විශාල වීම හෝ webkit මූලික කරගත් බ්‍රව්සර වල " "(Safari, Google Chrome, Arora etc.) හඳුනාගත් දෝෂයක් විය හැක." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s/%s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "ඔබගේ ආනයන ගොනුව උඩුගත කෙරෙමින්..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/තත්පර." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "තවත් මිනිත්තු %MIN තත්පර %SEC ක් පමණ ඉතිරිව ඇත." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "තවත් තත්පර %SEC ක් පමණ ඉතිරිව ඇත." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "ඔබගේ ගොනුව සැකසෙමින් පවතී. කරුණාකර ඉවසා සිටින්න." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" "කරුණාකර ඉවසා සිටින්න. ගොනුව උඩුගත කෙරෙමින් පවතී. උඩුගත කිරීම පිලිබඳ වැඩි විස්තර ලබා ගත නොහැක." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "වත්මන් සේවාදායකය තුළට ආනයනය කිරීම" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "\"%s\" දත්තගබඩාව තුළට ආනයනය කිරීම" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "\"%s\" වගුව තුළට ආනයනය කිරීම" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "ආනයනය සඳහා වූ ගොනුව:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "ගොනුව, හකුළුවා ඇති (උදා: %s) හෝ හකුළුවා නැති එකක් විය හැක." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6357,71 +6372,71 @@ msgid "" "tables." msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්‍රමාණය." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB තත්වය" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "පිටු" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "නිදහස් පිටු" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "අපවිත්‍ර පිටු" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "දත්ත අඩංගු පිටු" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "කාර්ය බහුල පිටු" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "කියවීම සඳහා වූ ඉල්ලීම්" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6612,8 +6627,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6628,123 +6643,123 @@ msgstr "Paul McCullagh ගේ PrimeBase XT බ්ලොගය" msgid "No data found for GIS visualization." msgstr "ජ්‍යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "%s දත්තගබඩාව වෙත යන්න" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "%s සඳහා සිටුවම් සංස්කරණය කරන්න" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "%s වගුව වෙත යන්න" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s හි සැකිල්ල" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "%s දසුන වෙත යන්න" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "සඟවන්න" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "ද්වීමය" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "මෙහි දිග නිසා,
මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -6788,7 +6803,7 @@ msgstr "වගු නාම මූලයක් එක් කරන්න" msgid "Add prefix" msgstr "නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" @@ -7075,7 +7090,7 @@ msgstr "වගු විකල්ප" msgid "Rename table to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" @@ -7191,8 +7206,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." @@ -7267,21 +7282,21 @@ msgstr "වැරදි භාවිත නාමය/මුරපදය. පි msgid "Can not find signon authentication script:" msgstr "signon සත්‍යාපන විධානාවලිය සොයාගත නොහැක:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "%s ගොනුවෙහි යතුරු කිසිවක් අඩංගු නොවේ" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "දෘඪාංග සත්‍යාපනය අසමත් විය" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "වලංගු සත්‍යාපන යතුරක් සම්බන්ද කර නැත" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "සත්‍යාපනය කෙරෙමින්..." @@ -7418,20 +7433,21 @@ msgstr "MIME වර්ග පෙන්වන්න" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "දායකයා" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "උත්පාදන වේලාව" @@ -7682,7 +7698,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර ගණනකි." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "වගුවේ නම" @@ -7917,7 +7933,7 @@ msgstr "PDF සෑදීම" msgid "Displaying Column Comments" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "බ්‍රව්සර රූපාන්තරනය" @@ -7983,7 +7999,7 @@ msgstr "කතිර කොටුගත කිරීම ඉවත් කරන msgid "Slave configuration" msgstr "අනුගාමි සේවාදායකය සඳහා වින්‍යාසයන්" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "ප්‍රධාන සේවාදායකය වෙනස් කරන්න හෝ නැවත වින්‍යාස කරන්න" @@ -7996,8 +8012,8 @@ msgstr "" "නම් පහත පේළිය [mysqld] කොටසට ඇතුලත් කරන්න:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8017,32 +8033,32 @@ msgid "Slave status" msgstr "අනුගාමි සේවාදායකයේ තත්වය" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "විචල්‍යය" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "සේවාදායකයේ හැඳුනුම් අංකය" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" "--report-host=host_name විකල්පය සමඟ ඇරඹි අනුගාමි සේවාදායක පමණක් මෙම ලැයිස්තුවේ පෙන්වයි." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "අනුගාමි අනුරූකරණ භාවිතා කරන්නෙක් එක් කරන්න" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8051,27 +8067,27 @@ msgstr "ඕනෑම භාවිතා කරන්නෙක්" msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "මෙම දායකයා" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8079,7 +8095,7 @@ msgid "" msgstr "" "දායක වගුව භාවිතා කෙරෙයි නම් මෙම ක්ෂේත්‍රය නොසැලකෙන අතර දායක වගුවේ ඇති අගයන් භාවිතා කෙරේ." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "මුරපදය උත්පාදනය කරන්න" @@ -8138,7 +8154,7 @@ msgstr "තොරතුරු" msgid "Event name" msgstr "සිද්ධියේ නම" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "සිද්ධි වර්ගය" @@ -8478,7 +8494,7 @@ msgstr "%2$s දත්තගබඩාවේ %1$s නමින් සිද්ධ msgid "There are no events to display." msgstr "පෙන්වීම සඳහා සිද්ධි නොමැත." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8487,7 +8503,7 @@ msgstr "පෙන්වීම සඳහා සිද්ධි නොමැත." msgid "The %s table doesn't exist!" msgstr "%s නමින් වගුවක් නොපවතියි!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8533,97 +8549,97 @@ msgstr "ගුණාංග" msgid "Extra" msgstr "අතිරේක" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "නව පිටුවක් සාදන්න" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "පිටුවේ නම" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "ස්වයංක්‍රීය සැලැසුම සඳහා පදනම් කර ගත යුත්තේ" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "අභ්‍යන්තර සබඳතා" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "අන්‍ය මූල" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "පිටුව තෝරන්න" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "වගු තෝරන්න" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "තීර නම්" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "ක්‍රමානුරූපය පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "ක්‍රමානුරූපය අපනයනය කල යුතු ආකෘතිය තෝරන්න" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "කොටු සැලැස්ම පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "වර්ණය පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "වගු වල මාන පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "සියලු වගු එකම ප්‍රමාණයෙන් පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "මූල පමණක් පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "තිරස් දිශානතිය" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "සිරස් දිශානතිය" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "දිශානතිය" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "පිටුවේ ප්‍රමාණය" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "වත්මන් පිටුවේ තව දුරටත් නොපවතින වගු වෙත යොමු ඇත. එම යොමු ඉවත් කිරීමට ඔබ කැමතිද?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8915,7 +8931,7 @@ msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසා #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "භාවිතා කරන්නා" @@ -9048,8 +9064,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 හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " @@ -9109,11 +9125,11 @@ msgstr "මකන්න" msgid "Columns" msgstr "තීර" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -9195,7 +9211,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" @@ -9208,12 +9224,12 @@ msgstr "අවධානය සක්‍රීයයි." msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s දසුන හලන ලදි" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" @@ -9241,14 +9257,14 @@ msgid "Column %s has been dropped" msgstr "%s තීරුව හලන ලදි" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "ප්‍රාථමික" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "සූචිය" @@ -9258,7 +9274,7 @@ msgid "Spatial" msgstr "ජ්‍යාමිතික" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" @@ -9282,7 +9298,7 @@ msgstr "වගු සබඳතා දර්ශනය" msgid "Propose table structure" msgstr "සැකිල්ලක් යෝජනා කරන්න" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." @@ -9290,7 +9306,7 @@ msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍ර msgid "Add column" msgstr "තීරයක් එක් කරන්න" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(ය) එක් කරන්න" @@ -9313,15 +9329,15 @@ msgstr "%s ට පසු" msgid "Create an index on  %s columns" msgstr "පේළි %s මත සුචියක් සාදන්න" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "ස්ථිතික" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "ගතික" @@ -9329,15 +9345,15 @@ msgstr "ගතික" msgid "partitioned" msgstr "කොටස් කරන ලද" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "පේළියේ දිග" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "පේළියේ ප්‍රමාණය" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "මීළඟ ක්‍රමාංකය" @@ -9383,15 +9399,15 @@ msgstr "SPATIAL මූලය එක් කරන්න" msgid "Add FULLTEXT index" msgstr "FULLTEXT මූලය එක් කරන්න" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "තොරතුරු" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "එලදායී" @@ -9428,18 +9444,18 @@ msgstr "" msgid "Move column" msgstr "පේළිය ගෙනයන්න" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9447,33 +9463,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "කිසිවක් නැත" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "%s ට පසු" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9491,8 +9507,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " -"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" +"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:126 msgid "Could not save configuration" @@ -9657,7 +9673,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "දත්තගබඩා නොමැත" @@ -9935,29 +9951,29 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "ගොනු" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "ලොග් නම" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "පිහිටුම" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "මුල් පිහිටුම" @@ -9965,31 +9981,31 @@ msgstr "මුල් පිහිටුම" msgid "Character Sets and Collations" msgstr "අක්ෂර කට්ටල සහ පරිතුලන" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." msgstr[1] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "දත්තගබඩා සංඛ්‍යා ලේඛන" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "ප්‍රධාන අනුරූකරණය" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "අනුගාමි අනුරූකරණය" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10059,38 +10075,38 @@ msgstr "සාර්ථකව වරප්‍රසාද පූරණය කර msgid "Unknown error" msgstr "හඳුනා නොගත් දෝෂය" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "ප්‍රධාන %s වෙත සම්බන්ධ විය නොහැක." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "ප්‍රධාන සේවාදායකය වෙනස් කල නොහැක" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "ප්‍රධාන සේවාදායකය %s වෙත සාර්ථකව වෙනස් කරන ලදි" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක ප්‍රධාන සේවාදායකය ලෙස සකසා ඇත." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "ප්‍රධාන සේවාදායකයෙහි තත්වය පෙන්වන්න" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "සම්බන්ධිත salves පෙන්වන්න" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10099,11 +10115,11 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක ප්‍රධාන සේවාදායකය ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "ප්‍රධාන සේවාදායකය සඳහා වින්‍යාස" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10112,19 +10128,19 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "සියලුම දත්තගබඩා අනුරූකරන්න; අතහරින්න:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "සියලු දත්තගබඩා නොසලකා හරින්න, අනුරූ කරන්න:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "කරුණාකර දත්තගබඩා තෝරන්න:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10132,7 +10148,7 @@ msgstr "" "දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව සේවාදායකය " "නැවත පණගන්වන්න." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10141,80 +10157,80 @@ msgstr "" "සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව 'යන්න' බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම සේවාදායකය " "ප්‍රධාන සේවාදායකය ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනය වනු ඇත" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "අනුගාමි SQL ත්‍රෙඩය අක්‍රීයයි!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "අනුගාමි IO ත්‍රෙඩය අක්‍රීයයි!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "සේවාදායකය අනුරූ ක්‍රියාවලියක අනුගාමි සේවාදායකය ලෙස සකසා ඇත. ඔබ කැමතිද:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "අනුගාමි සේවාදායකයේ තත්ත්ව වගුව බලන්න" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "දත්තගබඩාවන් ප්‍රධාන සේවාදායකය සමඟ සමමුහුර්තනය කරන්න" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "පරිපාලක අනුගාමි:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "පූර්ණ ඇරඹුම" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "පූර්ණ නැවතුම" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "අනුගාමි සේවාදායකය ප්‍රත්‍යාරම්භ කරන්න" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් අරඹන්න" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් නවත්තන්න" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් අරඹන්න" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් නවත්තන්න" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "දෝෂ කළමනාකරණය:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "දෝෂ අතහැර යාම සමමුහුර්ත නොවූ ප්‍රධාන හා අනුගාමි සේවාදායකයන් ඇති කරවිය හැක!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "වත්මන් දෝෂය මගහරින්න" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "ඊළඟ මඟහරින්න" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "දෝෂ." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10223,132 +10239,132 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක අනුගාමි සේවාදායකය ලෙස සකසා නැත. එසේ සකස් කිරීමට ඔබ කැමතිද?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "හසුරුවනය" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "විමසුම් කෑෂ්" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "ඈඳුම්" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "තේරීම" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "අනුගාමි දායකයන් පෙන්වන්න" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "අනුගාමි සේවාදායකයේ තත්ත්වය පෙන්වන්න" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "විමසුම් කෑෂය හිස් කරන්න" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "ධාවන කාල තොරතුරු" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "සියලුම තත්ත්ව විචල්‍යයන්" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "අධීක්ෂකය" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "උපදේශකය" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "පේළි ගණන:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "පෙරහන්" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "වචනය අඩංගු:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "වර්ගය මත පෙරන්න..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "ආකෘතික අගයන් පෙන්වන්න" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "අදාල සබැඳි:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "විශ්ලේශකය ක්‍රියාත්මක කරවන්න" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "උපදෙස්" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10356,7 +10372,7 @@ msgstr "" "සේවාදායක තත්ත්ව විචල්‍යයන් අධ්‍යයනය කිරීමෙන් සේවාදායක විචල්‍යයන්ට අදාල නිර්දේශ ලබා දීමට උපදේශක " "පද්ධතියට හැකිය." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10365,7 +10381,7 @@ msgstr "" "කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් කරගෙන බවත් එම නිසා " "එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් සලකන්න." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10375,7 +10391,7 @@ msgstr "" "වෙනස්කම් ප්‍රතිවර්තනය කරන්නේ කෙසේද යන්න දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය " "තවදුරටත් නරක විය හැකිය." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10386,31 +10402,31 @@ msgstr "" "කිරීම් ප්‍රතිවර්තනය කිරීමත් ය." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්‍රශ්න ගණන: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "ප්‍රකාශය" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්‍රමාණය: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "මෙම MySQL සේවාදායකය %1$s තිස්සේ ක්‍රියාත්මකයි. මෙය ඇරඹුයේ %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10418,19 +10434,19 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන හා අනුගාමි " "සේවාදායක ලෙස ක්‍රියාකරයි." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී ප්‍රධාන සේවාදායකය ලෙස " "ක්‍රියාකරයි." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී අනුගාමි සේවාදායකය ලෙස " "ක්‍රියාකරයි." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10438,71 +10454,71 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "විධානය" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10510,78 +10526,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10589,7 +10605,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10597,42 +10613,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10640,33 +10656,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10675,243 +10691,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "මුළු දත්ත කියැවුම් ගණන." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "මුළු දත්ත ලියැවුම් ගණන." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "ද්විත්ව-ලිවීම් මෙහෙයුම් සඳහා ලියැවුණු පිටු ගණන." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "සිදු කෙරුණු ද්විත්ව-ලිවීම් මෙහෙයුම් ගණන." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු වූ වාර ගණන." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "සාදන ලද පිටු ගණන." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "යතුරු කෑෂයේ භාවිතා කරන ලද ප්‍රතිශතය (ගණනය කරන ලද අගයකි)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10919,99 +10935,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11019,18 +11035,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11038,49 +11054,49 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "අවධානය අක්‍රීයයි." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "අධීක්ෂණය අරඹන්න" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "උපදෙස්/පිහිටුවීම" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "ප්‍රස්ථාර එක් කරන්න" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "ප්‍රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "ප්‍රස්ථාරයේ තීර" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "ප්‍රස්ථාර සැකසුම" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11088,15 +11104,15 @@ msgstr "" "ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " "කර ගැනීමට අවශ්‍ය විය හැකිය." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11110,7 +11126,7 @@ msgstr "" "general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " "15% දක්වා ඉහල යා හැකි බව සලකන්න" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11122,11 +11138,11 @@ msgstr "" "MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " "භාවිතා කල හැක." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "අධීක්ෂකය භාවිතා කිරීම:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11136,7 +11152,7 @@ msgstr "" "ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " "මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11148,11 +11164,11 @@ msgstr "" "පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " "හැක." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "කරුණාවෙන් සලකන්න:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11164,86 +11180,86 @@ msgstr "" "මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " "අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "පෙරසැදි ප්‍රස්ථාර" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "තත්ව විචල්‍ය(ය)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "ශ්‍රේණිය තෝරන්න:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "භාජකයක් භාවිතා කරන්න" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "මෙම ශ්‍රේණිය එක් කරන්න" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "ශ්‍රේණිය ඉවත් කරන්න" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "ලොග සංඛ්‍යලේඛන" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "තෝරාගත් කාල පරාසය:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "විමසුම් විශ්ලේශකය" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "තත්පර %dක්" msgstr[1] "තත්පර %dක්" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11361,19 +11377,19 @@ msgstr "" "ඉලක්ක දත්තගබඩාව මූලාශ්‍ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්‍ර දත්තගබඩාව නොවෙනස්ව " "පවතියි." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "විචල්‍යය සිටුවීම අසමත් විය" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "සේවාදායකයේ විචල්‍යයන් සහ සිටුවම්" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "සැසි අගය" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "ගෝලීය අගය" @@ -11669,42 +11685,42 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] msgid "Wrong data" msgstr "වැරදි දත්ත" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL ප්‍රතිළුල" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "ලේබලය" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "තීර සාර්ථකව ගෙන යන ලදි." @@ -11835,16 +11851,16 @@ msgstr "සුචිය සංස්කරණය කරන්න" msgid "Index name:" msgstr "සූචියේ නම:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "සූචි වර්ගය:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr " %s තීර(ය) සූචියට එක් කරන්න" @@ -12003,38 +12019,38 @@ msgstr "අපනයන කරන්න %s ලෙස" msgid "Show versions" msgstr "අනුවාද පෙන්වන්න" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "%s සඳහා අවධානය අක්‍රීය කරන්න" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "අක්‍රීය කරන්න" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "%s සඳහා අවධානය සක්‍රීය කරන්න" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "සක්‍රීය කරන්න" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "අනුවාදය සාදන්න" @@ -12371,8 +12387,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12500,8 +12516,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sk.po b/po/sk.po index 38a2fad3a8..442ff329d7 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-24 11:02+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.1\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Číslo stránky:" @@ -39,36 +39,36 @@ msgstr "" "nadradené okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Hľadať" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Hľadať" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Vykonaj" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Kľúčový názov" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Použiť túto hodnotu" @@ -119,18 +119,18 @@ msgstr "Databáza %1$s bola vytvorená." msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Komentár k tabuľke" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Stĺpec" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Stĺpec" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Typ" msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Nulový" msgid "Default" msgstr "Predvolené" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Predvolené" msgid "Links to" msgstr "Linkovať na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Linkovať na" msgid "Comments" msgstr "Komentáre" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Komentáre" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nie" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Nie" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Áno" @@ -274,33 +274,33 @@ msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Označiť všetko" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databáza %1$s bola premenovaná na %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databáza %1$s bola skopírovaná do %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "Tabuľka" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Riadkov" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Veľkosť" @@ -344,7 +344,7 @@ msgstr "práve sa používa" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Vytvorenie" @@ -352,7 +352,7 @@ msgstr "Vytvorenie" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Posledná zmena" @@ -360,7 +360,7 @@ msgstr "Posledná zmena" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Posledná kontrola" @@ -376,7 +376,7 @@ msgstr[2] "%s tabuliek" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prepnúť do %svizuálneho návrhára%s" @@ -408,9 +408,9 @@ msgstr "Sledované tabuľky" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databáza" @@ -428,66 +428,66 @@ msgstr "Aktualizované" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stav" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Akcia" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Ukázať" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Odstrániť" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "nie je zapnuté" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Verzia" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Snímok štruktúry" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nesledované tabuľky" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Sledovať tabuľku" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Databázový log" @@ -503,12 +503,12 @@ msgstr "Vybraný typ exportu musí byť uložený do súboru!" msgid "Bad parameters!" msgstr "Chybné parametre!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -521,7 +521,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." @@ -530,117 +530,124 @@ msgstr "Výpis bol uložený do súboru %s." msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pre pole \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použíť OpenStreetMap ako základnú vrstvu" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Bod" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Pridať bod" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Vonkajší obrys" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Vnútorný obrys" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Pridať linku" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Pridať vnútorný obrys" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygón" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Pridať polygón" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Pridať geometriu" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Z voľby „Funkcie“ zvoľte „GeomFromText“ a vložte nižšie uvedený text ako " "hodnotu" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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ť." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -649,7 +656,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:400 +#: import.php:404 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 " @@ -659,28 +666,28 @@ msgstr "" "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP konfigurácii. Pozri " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -688,7 +695,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:513 +#: import.php:517 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." @@ -697,9 +704,9 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL dopyt bol úspešne vykonaný" @@ -713,7 +720,7 @@ msgstr "Späť" 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." @@ -722,7 +729,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný." msgid "Do you really want to execute \"%s\"?" msgstr "Skutočne chcete vykonať príkaz \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZMAZAŤ celú databázu!" @@ -763,7 +770,7 @@ msgstr "Pridať index" msgid "Edit Index" msgstr "Upraviť index" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Pridať %d polí do indexu" @@ -813,24 +820,24 @@ msgstr "Zavrieť" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Upraviť" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Živý graf prevádzky" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Živý graf spojení/procesov" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Živý graf dopytov" @@ -840,24 +847,24 @@ msgstr "Statické data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Ostatné" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -877,7 +884,7 @@ msgstr "Sieťová prevádzka (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledného obnovenia" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesy" @@ -895,7 +902,7 @@ msgstr "Dotazov od posledného obnovenia" msgid "Questions (executed statements by the server)" msgstr "Dopyty (príkazy vykonané na serveri)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Štatistika dopytov" @@ -940,13 +947,13 @@ msgstr "Stránkovacia oblasť" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -998,32 +1005,32 @@ msgstr "Odoslaných bajtov" msgid "Bytes received" msgstr "Prijatých bajtov" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Spojenia" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1037,11 +1044,11 @@ msgstr "%d tabuliek" msgid "Questions" msgstr "Dopyty" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Nastavenia" @@ -1062,12 +1069,12 @@ msgid "Please add at least one variable to the series" msgstr "Pridajte prosím aspoň jednu hodnotu do série" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Žiadny" @@ -1167,7 +1174,7 @@ msgstr "Zmeniť nastavenia" msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Názov grafu" @@ -1256,7 +1263,7 @@ msgstr "Vysvetliť výstup" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Čas" @@ -1353,8 +1360,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1566,12 +1573,12 @@ msgstr "Čas behu dopytu" msgid "%d is not valid row number." msgstr "%d nie je platné číslo riadku." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Uložiť" @@ -1627,8 +1634,8 @@ msgstr "Výsledky dopytu" msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorovať" @@ -1729,7 +1736,7 @@ msgstr "Zobraziť riadky" msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Vytvoriť" @@ -1828,63 +1835,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dec" @@ -1922,32 +1929,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "So" @@ -2060,16 +2067,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "za minútu" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "za hodinu" @@ -2086,7 +2093,7 @@ msgstr "Maximálna veľkosť: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentácia" @@ -2109,14 +2116,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Chyba" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL dopyt" @@ -2134,210 +2141,210 @@ msgstr "SQL dopyt" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k SQL validátoru!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Odošli dopyt" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Obnoviť" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Skontrolovať SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Upraviť dopyt na tejto stránke" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilovanie" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ne" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, 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/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Chýbajúci parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Začiatok" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Predchádzajúci" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Ďalší" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Prejsť na databázu "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Štruktúra" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vložiť" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Prechádzať" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operácie" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Vyprázdniť" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Spustiť" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Vytlačiť" @@ -2356,98 +2363,98 @@ msgstr "" msgid "Font size" msgstr "Veľkosť písma" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Vzostupne" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Zostupne" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Triediť" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kritéria" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Pridať/Odobrať riadky s kritériami" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Pridať/Odobrať stĺpce" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Aktualizovať dopyt" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Použiť tabuľky" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Alebo" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "A" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Vložiť" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Zmazať" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Zmeniť" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL dopyt v databáze %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "najmenej jedno zo slov" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "všetky slová" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "presný výraz" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "ako regulárny výraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2455,7 +2462,7 @@ msgstr[0] "Celkovo: %s výskyt" msgstr[1] "Celkovo: %s výskyty" msgstr[2] "Celkovo: %s výskytov" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -2463,44 +2470,44 @@ msgstr[0] "%1$s výskyt v %2$s" msgstr[1] "%1$s výskyty v %2$s" msgstr[2] "%1$s výskytov v %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Odstrániť nájdené záznamy z tabuľky %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Zmazať" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Hľadať v databáze" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slová alebo hodnoty, ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Nájdi:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Slová sú rozdelené medzerou (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "V tabuľkách:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "V tabuľke:" @@ -2545,8 +2552,8 @@ msgstr "Opakovať hlavičku každých %s riadkov" msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2623,7 +2630,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Zabiť" @@ -2642,8 +2649,8 @@ msgstr "v dopyte" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -2655,7 +2662,7 @@ msgstr "Zobrazené riadky" msgid "total" msgstr "celkovo" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" @@ -2666,7 +2673,7 @@ msgstr "Dopyt zabral %01.4f s" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Výber:" @@ -2676,8 +2683,8 @@ msgstr "Výber:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Označiť všetko" @@ -2715,17 +2722,17 @@ msgstr "Linka nebola nájdená" msgid "Too many error messages, some are not displayed." msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize " "v php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2733,27 +2740,27 @@ msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá " "bola nastavená v HTML formulári." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Súbor bol nahraný len čiastočne." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Chýba adresár pre dočasné súbory." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Chyba pri zápise súboru na disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Nahrávanie súboru bolo zastavené rozšírením." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2761,11 +2768,11 @@ msgstr "" "Chyba pri presune nahrávaného súboru, viď [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Chyba pri presúvaní nahraného súboru." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Nahraný súbor sa nedá prečítať (presunúť)." @@ -2774,66 +2781,66 @@ msgstr "Nahraný súbor sa nedá prečítať (presunúť)." msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Pokiaľ chcete pokračovať, Javascript musí byť povolený" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Nebol definovaný žiadny index!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indexy" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Zotriedenie" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Komentár" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primárny kľúč bol zrušený" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index pre %s bol odstránený" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2844,12 +2851,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databázy" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2917,18 +2924,18 @@ msgstr "Používatelia" msgid "Synchronize" msgstr "Synchronizovať" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binárny log" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikácia" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Premenné" @@ -3061,8 +3068,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcia" @@ -3072,11 +3079,11 @@ msgstr "Funkcia" msgid "Operator" msgstr "Operátor" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Hodnota" @@ -3084,64 +3091,64 @@ msgstr "Hodnota" msgid "Table Search" msgstr "Hľadať v tabuľke" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Upraviť/Vložiť" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Zvoliť stĺpec (najmenej jeden):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Záznamov na stránku" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Zobraziť zoradené:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maximálny počet zobrazených riadkov" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Rozšírené parametre vyhľadávania" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\") pre dva rôzne " "stĺpce" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "Kontrolný užívateľ" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Zrušiť zoom" @@ -3214,14 +3221,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3466,7 +3473,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabuľky" @@ -3480,12 +3487,12 @@ msgstr "Tabuľky" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Dáta" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Naviac" @@ -3591,7 +3598,7 @@ msgstr "Otvorené" msgid "Closed" msgstr "Zatvorené" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3729,22 +3736,22 @@ msgstr "Wiki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Táto voľba je vypnutá, nebude použitá vo vašich nastaveniach" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Nastavená hodnota: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Obnoviť východziu hodnotu" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Vynulovať" @@ -4031,7 +4038,7 @@ msgstr "Znaková sada súboru" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formát" @@ -4140,7 +4147,7 @@ msgstr "Návestie" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME typ" @@ -4176,7 +4183,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Použiť opačný apostrof pri názvoch tabuliek a polí" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Režim kompatibility SQL" @@ -5753,10 +5760,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolovanie SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6024,7 +6031,7 @@ msgstr "Chýba rozšírenie %s. Skontrolujte prosín nastavenia PHP." msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6032,46 +6039,54 @@ msgstr "" "Server neodpovedá (alebo socket lokálneho MySQL servera nie je správne " "nastavený)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Server neodpovedá." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Podrobnosti..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Zmeniť heslo" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Žiadne heslo" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Potvrdiť" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hashovanie hesla" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Kompatibilné s MySQL 4.0" @@ -6202,8 +6217,8 @@ msgstr ", meno tabuľky bude zmenené na @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "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 " @@ -6285,7 +6300,7 @@ msgstr "Vytvoriť verziu" msgid "authored on %1$s by %2$s" msgstr "Vytvoriť verziu" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6295,35 +6310,35 @@ msgstr "" "alebo je toto známa chyba v prehliadačoch založených na gecko (Safari, " "Google Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Formát importovaného súboru" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Súbor sa spracováva, buďte prosím trpezliví." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6331,30 +6346,30 @@ msgstr "" "Súbor sa načítava, buďte prosím trpezliví. Podrobnosti o nahrávaní nie sú " "dostupné." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importujem na aktuálny server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importujem do databázy \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importujem do tabuľky \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Súbor na importovanie:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Súbor môže byť komprimovaný (%s) alebo nekomprimovaný." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6440,71 +6455,71 @@ msgid "" msgstr "" "Veľkosť pamäte, ktorú InnoDB používa pre cachovanie dát a indexov tabuliek." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Využitie Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "stránok" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Prázdnych stránok" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Zmenených stránok" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Stránky obsahujúce dáta" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Stránok určených k uvoľneniu" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Spracovávaných stránok" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Uzavretých stránok" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivita Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Požiadavkov na čítanie" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Požiadavkov na zápis" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Výpadkov pri čítaní" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Čakaní na zápis" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Výpadkov pri čítaní v %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Čakaní na zápis v %" @@ -6716,8 +6731,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6734,131 +6749,131 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre graf." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Prejsť do databázy: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Chýba hodnota pre %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Prejsť na tabuľku: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Štruktúra %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Prejsť na pohľad: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Skryť" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binárny" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Kvôli dĺžke poľa,
toto pole sa nemusí dať upraviť" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "upload adresár web serveru" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6903,7 +6918,7 @@ msgstr "" msgid "Add prefix" msgstr "Odstrániť index/indexy" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7192,7 +7207,7 @@ msgstr "Parametre tabuľky" msgid "Rename table to" msgstr "Premenovať tabuľku na" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Úložný Systém" @@ -7307,8 +7322,8 @@ msgstr "Vitajte v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7384,21 +7399,21 @@ msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." msgid "Can not find signon authentication script:" msgstr "Nepodarilo sa nájsť autorizačný skript pre prihlásenie:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Súbor %s neobsahuje ID kľúč" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hardwarové prihlasovanie zlyhalo" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Nie je pripojený žiadny prihlasovací kľúč" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Prihlasujem..." @@ -7539,20 +7554,21 @@ msgstr "Zobraziť MIME typy" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Hostiteľ" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Vygenerované" @@ -7783,7 +7799,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Chybný počet položiek v CSV vstupe na riadku %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Názov tabuľky" @@ -8025,7 +8041,7 @@ msgstr "Vytváranie PDF" msgid "Displaying Column Comments" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" @@ -8096,7 +8112,7 @@ msgstr "Odznačiť všetko" msgid "Slave configuration" msgstr "Slave replikácia" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8107,8 +8123,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8130,31 +8146,31 @@ msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Premenná" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID servra" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Akýkoľvek používateľ" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8163,27 +8179,27 @@ msgstr "Akýkoľvek používateľ" msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8192,7 +8208,7 @@ msgstr "" "Ak sa použije Host tabuľka, toto políčko je ignorovné a namiesto toho sa " "použijú hodnoty z tabuľky Host." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Vytvoriť Heslo" @@ -8258,7 +8274,7 @@ msgstr "Podrobnosti" msgid "Event name" msgstr "Typ udalosti" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Typ udalosti" @@ -8649,7 +8665,7 @@ msgstr "V databáze %2$s nebola nájdená udalosť s menom %1$s" msgid "There are no events to display." msgstr "Nie sú žiadne udalosti na zobrazenie." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8658,7 +8674,7 @@ msgstr "Nie sú žiadne udalosti na zobrazenie." msgid "The %s table doesn't exist!" msgstr "Tabuľka %s neexistuje!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8704,91 +8720,91 @@ msgstr "Atribúty" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Vytvoriť novú Stránku" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Názov stránky" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatické rozvrhnutie podľa" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interné vzťahy" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Zvoliť stránku" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Vybrať Tabuľky" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Názvy stĺpcov" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Zobraziť relačnú schému" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Zobraziť mriežku" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Zobraziť farbu" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Zobraziť rozmery tabuliek" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Zobraziť všetky tabuľky s rovnakou šírkou" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Dátový slovník" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Na šírku" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Na výšku" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientácia" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Veľkosť stránky" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8796,7 +8812,7 @@ msgstr "" "Aktuálna stránka sa odkazuje na tabuľky, ktoré už neexistujú, želáte si " "odstrániť tieto odkazy?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Zobraziť grafický návrh" @@ -9097,7 +9113,7 @@ msgstr "Používatelia majúci prístup k "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Používateľ" @@ -9237,13 +9253,13 @@ msgstr "Zoznam používatelov" 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ť." #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9299,11 +9315,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -9396,10 +9412,10 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" @@ -9412,12 +9428,12 @@ msgstr "Sledovanie je aktívne." msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" @@ -9445,14 +9461,14 @@ msgid "Column %s has been dropped" msgstr "Stĺpec %s bol odstránený" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primárny" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9462,7 +9478,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Celý text" @@ -9490,7 +9506,7 @@ msgstr "Zobraziť prepojenia" msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." @@ -9498,7 +9514,7 @@ msgstr "Musíte pridať aspoň jeden stĺpec." msgid "Add column" msgstr "Pridať stĺpec" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" @@ -9521,15 +9537,15 @@ msgstr "Po %s" msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Štatistika riadku" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statický" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamický" @@ -9537,15 +9553,15 @@ msgstr "dynamický" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Dĺžka riadku" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Veľkosť riadku" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9595,15 +9611,15 @@ msgstr "Pridať index" msgid "Add FULLTEXT index" msgstr "Pridať fulltextový index" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informácia" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Zabrané miesto" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektívny" @@ -9639,7 +9655,7 @@ msgstr "" msgid "Move column" msgstr "Odstrániť stĺpce" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9648,11 +9664,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:145 msgid "Transformation options" msgstr "Parametre transformácie" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9664,34 +9680,34 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Získať viac miesta pre úpravy" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Žiadny" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Podľa zadania:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9895,7 +9911,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Žiadne databázy" @@ -10141,8 +10157,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " -"%sNastavovacieho skriptu%s." +"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %" +"sNastavovacieho skriptu%s." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -10182,29 +10198,29 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Súbory" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Názov logu" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozícia" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Pôvodná pozícia" @@ -10212,7 +10228,7 @@ msgstr "Pôvodná pozícia" msgid "Character Sets and Collations" msgstr "Znakové sady a Zotriedenia" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10221,24 +10237,24 @@ msgstr[0] "%s databáz bolo úspešne zrušených." msgstr[1] "%s databáz bolo úspešne zrušených." msgstr[2] "%s databáz bolo úspešne zrušených." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Štatistiky databázy" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master replikácia" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave replikácia" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Zobraziť štatistiky" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10308,38 +10324,38 @@ msgstr "Práva boli úspešne znovunačítané." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server zmenený úspešne na %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Zobraziť stav master replikácie" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10348,12 +10364,12 @@ msgstr "" "Tento server nie je nakonfigurovaný ako master v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_replication.php:247 +#: server_replication.php:274 #, fuzzy msgid "Master configuration" msgstr "Master replikácia" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10362,108 +10378,108 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Prosím, vyberte databázy:" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Tento server je nakonfigurovaný ako slave v replikačnom procese. Prajete si:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 #, fuzzy msgid "Synchronize databases with master" msgstr "Synchronizovať Databázy" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Ovládať slave:" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Celý text" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Spustiť len SQL vlákno" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Spustiť len IO vlákno" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10472,157 +10488,157 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Manipulačná Rutina" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Vyrovnávacia pamäť príkazov" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Počet vlákien" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Dočasné dáta" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Odložené vloženia" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Vyrovnávacia pamäť kľúčov" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Zjednotenia" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Zoraďovanie" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinátor transakcií" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Zobraziť podriadené hosty" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Zobraziť stav podriadených hostov" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Stav všetkých premenných" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Monitor" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Poradca" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Počet riadkov:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Obnovovacia frekvencia: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtre" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Obsahujúca slovo:" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Súvisiace odkazy:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Spustiť analyzátor" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Inštrukcie" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10630,31 +10646,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Dopytov od spustenia: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Tento MySQL server beží %1$s. Bol spustený %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10662,18 +10678,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Tento MYSQL server je nakonfigurovaný ako master v replikačnom " "procese." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10681,11 +10697,11 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10693,45 +10709,45 @@ msgstr "" "Na vyťaženom serveri môže dôjsť k pretečeniu počítadiel, takže štatistiky " "servera môžu byť nepresné." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Prijaté" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Odoslané" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Príkaz" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10741,16 +10757,16 @@ msgstr "" "ale zároveň prekročili hodnotu binlog_cache_size a museli tak použiť dočasný " "súbor na uloženie príkazov transakcie." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Počet transakcií, ktoré využili vyrovnávaciu pamäť binárneho logu." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10762,11 +10778,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10774,7 +10790,7 @@ msgstr "" "Počet dočasných, v pamäti uložených tabuliek, vytvorených servrom pri " "vykonávaní príkazov." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10782,7 +10798,7 @@ msgstr "" "Počet riadkov pridaných príkazom INSERT DELAYED, pri ktorých sa vyskytla " "chyba (pravdepodobne opakujúci sa kľúč)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10790,23 +10806,23 @@ msgstr "" "Počet vlákien používaných príkazmi INSERT DELAYED. Každá samostatná tabuľka, " "na ktorú je použitý príkaz INSERT DELAYED, ma svoje vlastné vlákno." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Koľkokrát bol z tabuľky odstránený riadok." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10816,7 +10832,7 @@ msgstr "" "tabuľky s daným menom. Tento proces sa nazýva objavovanie. Handler_discover " "zobrazuje počet doposiaľ objavených tabuliek." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10826,7 +10842,7 @@ msgstr "" "znamená to že server vykonáva príliš veľa kompletných prechádzaní indexov; " "napríklad, SELECT col1 FROM foo, za predpokladu že col1 je indexovaný." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10834,7 +10850,7 @@ msgstr "" "Počet požiadavkov na načítanie riadku podľa kľúča. Ak je táto hodnota " "vysoká, je to dobrým znamením že sú príkazy a tabuľky správne indexované." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10844,7 +10860,7 @@ msgstr "" "Táto hodnota sa zvyšuje ak sa načítava indexovaný stĺpec v danom rozsahu " "alebo ak sa vykonáva prehľadávanie indexu." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10853,7 +10869,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10866,7 +10882,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10878,35 +10894,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Počet požiadavkov na zmenu riadku v tabuľke." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Počet stránok obsahujúcich dáta (nečistých aj čistých)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Počet stránok, na ktoré je požiadavka na vyprázdnenie." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10916,7 +10932,7 @@ msgstr "" "momentálne číta alebo zapisuje, prípadne nemôžu byť vyprázdnené ani " "odstránené z nejakého iného dôvodu." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10928,11 +10944,11 @@ msgstr "" "hodnota sa tiež môže vypočítať ako Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10940,7 +10956,7 @@ msgstr "" "Počet \"náhodných\" predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "príkazoch, ktoré prehľadávajú veľkú časť tabuľky, ale v náhodnom poradí." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10948,11 +10964,11 @@ msgstr "" "Počet sekvenčných predčítaní vykonaných InnoDB. Táto situácia nastáva pri " "vykonávaní sekvenčného prehľadávania celej tabuľky." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10960,7 +10976,7 @@ msgstr "" "Počet logických načítaní, ktoré sa nemohli vykonať z vyrovnávacej pamäte a " "namiesto toho bolo vykonané načítanie celej jednej stránky." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10974,88 +10990,88 @@ msgstr "" "počet týchto čakaní a ak bola správne nastavená veľkosť vyrovnávacej pamäte, " "mala by byť nízka." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Počet vykonaných dvojitých zápisov a počet stránok zapísaných pre tento účel." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" "Počet čakaní na vyprázdnenie vyrovnávacej pamäte logu z dôvodu jej zaplnenia." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Počet fsync() zápisov vykonaných do logovacieho súboru." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11064,51 +11080,51 @@ msgstr "" "hodnôt sa udáva v stránkach; pomocou veľkosti stránky je možné ich premeniť " "na bajty." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Priemerný čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Celkový čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximálny čas potrebný na získanie zámku na riadok, v milisekundách." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Koľkokrát sa muselo čakať na zámok na riadok." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11117,7 +11133,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11125,7 +11141,7 @@ msgstr "" "Počet nevyužitých blokov vo vyrovnávacej pamäti kľúčov. Z tejto hodnoty " "môžete zistiť koľko vyrovnávacej pamäte sa práve používa." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11134,17 +11150,17 @@ msgstr "" "Počet využitých blokov vo vyrovnávacej pamäti kľúčov. Táto hodnota určuje " "najväčšie množstvo blokov, ktoré kedy naraz použité." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formát importovaného súboru" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Počet požiadavkov na načítanie kľúčového bloku z vyrovnávacej pamäti." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11155,26 +11171,26 @@ msgstr "" "je príliš malá. Úspešnosť vyrovnávacej pamäte si môžte vypočítať zo vzťahu " "Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Počet požiadavkov na zápis kľúčového bloku do vyrovnávacej pamäti." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Počet fyzických zápisov kľúčového bloku na disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11185,17 +11201,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Počet riadkov čakajúcich na zápis cez INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11203,38 +11219,38 @@ msgstr "" "Počet doposiaľ otvorených tabuliek. Ak je táto hodnota príliš vysoká, " "pravdepodobne je vyrovnávacia pamäť pre tabuľky príliš malá." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Počet otvorených streamov (väčšinou využívané na logovanie)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Veľkosť voľnej pamäti pre vyrovnávaciu pamäť príkazov." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11246,7 +11262,7 @@ msgstr "" "veľkosti vyrovnávacej pamäte príkazov. Vyrovnávacia pamäť príkazov používa " "stratégiu (LRU), odstránenie najdlhšie nepoužitých príkazov ako prvých." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11254,19 +11270,19 @@ msgstr "" "Počet príkazov neumiestnených do vyrovnávacej pamäti (nie sú cachovateľné " "alebo nevyhovujú nastaveniu query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Celkové množstvo blokov vo vyrovnávacej pamäti príkazov." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11274,12 +11290,12 @@ msgstr "" "Počet spojení, ktoré nevyužívajú indexy. Ak sa táto hodnota nerovná 0, mali " "by ste starostlivo skontrolovať indexy vašich tabuliek." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Počet spojení, ktoré na referenčnej tabuľke využili intervalové vyhľadávanie." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11288,7 +11304,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11296,15 +11312,15 @@ msgstr "" "Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto " "hodnota nie je kritická ani v prípade, že je vysoká.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Počet spojení, ktoré vykonali kompletné prehľadanie prvej tabuľky." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Počet dočasných tabuliek, otvorených podriadeným SQL vláknom." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11312,13 +11328,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Táto položka obsahuje hodnotu ON ak je tento server podriadeným a je " "pripojený k prislúchajúcemu nadriadenému servru." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11326,14 +11342,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Počet príkazov, ktorých vykonanie zabralo viac ako je hodnota " "long_query_time." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11343,23 +11359,23 @@ msgstr "" "je táto hodnota prílis veľká, mali by ste pouvažovať nad zvýšením hodnoty " "systémového nastavania sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Počet zoradení uskutočnených prehľadávaním tabuľky." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Počet zámkov tabuliek, ktoré boli získané okamžite." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11371,7 +11387,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11381,11 +11397,11 @@ msgstr "" "dá vypočítať zo vzťahu Threads_created/Connections. Ak je táto hodnota v " "červenom, mali by ste zvýšiť hodnotu thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11396,75 +11412,75 @@ msgstr "" "Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to " "však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sledovanie nie je aktívne." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Štart" -#: server_status.php:1745 +#: server_status.php:1744 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Úvod" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "Odstrániť index/indexy" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Stĺpce s textovou oblasťou" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Obnoviť východziu hodnotu" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Úvod" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11473,7 +11489,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11481,18 +11497,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11500,11 +11516,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11512,88 +11528,88 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Odstrániť graf" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Vybrať série:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "alebo zadajte meno premennej:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Pridať nového používateľa" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "Series:" msgid "Series in Chart:" msgstr "Série:" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Zobraziť štatistiky" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ dopytu" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11601,7 +11617,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekúnd" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11718,19 +11734,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Premenné a nastavenia serveru" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Hodnota sedenia" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globálna hodnota" @@ -12022,42 +12038,42 @@ msgstr "" msgid "Wrong data" msgstr "Žiadne dáta" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Výsledok SQL dopytu" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Vygenerované" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Názov" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12214,16 +12230,16 @@ msgstr "Režim úprav" msgid "Index name:" msgstr "Meno indexu :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Typ indexu :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Pridať do indexu  %s stĺpce" @@ -12386,41 +12402,41 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Chýba hodnota pre %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Vytvoriť verziu" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Vytvoriť verziu" @@ -12783,8 +12799,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12919,8 +12935,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14134,8 +14150,8 @@ msgstr "concurrent_insert je nastavené na 0" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " -#~ "%s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" +#~ "s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index b97eca494a..dc7e3bb049 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-22 14:29+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: Weblate 1.2\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Številka strani:" @@ -40,36 +40,36 @@ 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:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Iskanje" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Iskanje" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Izvedi" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Uporabi to vrednost" @@ -120,18 +120,18 @@ msgstr "Zbirka podatkov %1$s je ustvarjena." msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Pripomba tabele" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Pripomba tabele" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Stolpec" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Stolpec" msgid "Type" msgstr "Vrsta" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Vrsta" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Privzeto" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Privzeto" msgid "Links to" msgstr "Povezave z" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Povezave z" msgid "Comments" msgstr "Pripombe" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Pripombe" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Izberi vse" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Zbirko podatkov %1$s sem preimenoval v %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Zbirko podatkov %1$s sem skopiral v %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti " "zakaj, kliknite %stukaj%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Vrstic" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Velikost" @@ -345,7 +345,7 @@ msgstr "v uporabi" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Ustvarjeno" @@ -353,7 +353,7 @@ msgstr "Ustvarjeno" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Zadnjič posodobljeno" @@ -361,7 +361,7 @@ msgstr "Zadnjič posodobljeno" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Zadnjič pregledano" @@ -378,7 +378,7 @@ msgstr[3] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Za prikaz morate izbrati morate vsaj en stolpec" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Preklopi na %svidni graditelj%s" @@ -410,9 +410,9 @@ msgstr "Sledene tabele" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Zbirka podatkov" @@ -430,66 +430,66 @@ msgstr "Posodobljeno" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Stanje" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Dejanje" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Pokaži" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Zavrzi" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ni aktivno" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Različice" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Sledi tabeli" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Dnevnik zbirke podatkov" @@ -505,12 +505,12 @@ msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!" msgid "Bad parameters!" msgstr "Slabi parametri!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." @@ -532,117 +532,124 @@ msgstr "Dump je shranjen v datoteko %s." msgid "Invalid export type" msgstr "Neveljavna vrsta izvoza" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za stolpec \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Uporabi OpenStreetMaps kot osnovni sloj" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Točka" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Dodaj točko" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Daljica" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Zunanji obroč" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Notranji obroč" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Dodaj daljico" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Dodaj notranji obroč" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Večkotnik" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Dodaj večkotnik" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Dodaj geometrijo" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Izhod" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Izberite \"GeomFromText\" iz stolpca \"Funkcija\" in prilepite spodnji niz v " "polje \"Vrednost\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -651,7 +658,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:400 +#: import.php:404 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 " @@ -661,29 +668,29 @@ 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Ne morem pretvoriti nabora znakov datoteke brez knjižnice za pretvorbo " "nabora znakov" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -691,7 +698,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:513 +#: import.php:517 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." @@ -700,9 +707,9 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Poizvedba SQL je bila uspešno izvedena" @@ -716,7 +723,7 @@ msgstr "Nazaj" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -725,7 +732,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene." msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -765,7 +772,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Uredi indeks" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Dodaj %d stolpec(-cev) k indeksu" @@ -815,24 +822,24 @@ msgstr "Zapri" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Uredi" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Grafikon prometa v živo" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Grafikon povezav/procesov v živo" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Grafikon poizvedb v živo" @@ -842,24 +849,24 @@ msgstr "Statični podatki" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Skupaj" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -879,7 +886,7 @@ msgstr "Promet strežnika (v KiB)" msgid "Connections since last refresh" msgstr "Povezav od zadnje osvežitve" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesi" @@ -897,7 +904,7 @@ msgstr "Vprašanja od zadnje osvežitve" msgid "Questions (executed statements by the server)" msgstr "Vprašanja (izvedene poizvedbe strežnika)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Statistika poizvedb" @@ -943,13 +950,13 @@ msgstr "Sistemska izmenjava" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1001,32 +1008,32 @@ msgstr "Poslanih bajtov" msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Povezave" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1040,11 +1047,11 @@ msgstr "%d tabel(a)" msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Nastavitve" @@ -1065,12 +1072,12 @@ msgid "Please add at least one variable to the series" msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Brez" @@ -1170,7 +1177,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1257,7 +1264,7 @@ msgstr "Razloži izhod" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Čas" @@ -1354,8 +1361,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" @@ -1566,12 +1573,12 @@ msgstr "Čas izvajanja poizvedbe" msgid "%d is not valid row number." msgstr "%d ni veljavna številka vrstice." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Shrani" @@ -1628,8 +1635,8 @@ msgstr "Rezultati poizvedbe" msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Prezri" @@ -1738,7 +1745,7 @@ msgstr "Prikaži podatkovno vrstico(-e)" msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Ustvari" @@ -1837,63 +1844,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -1931,32 +1938,32 @@ msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "sob" @@ -2072,16 +2079,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "Neveljaven znak v vrstici %1$s. Pričakoval sem tabulator, vendar našel »%2$s«" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "na sekundo" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "na minuto" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "na uro" @@ -2098,7 +2105,7 @@ msgstr "Največja velikost: %s %s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacija" @@ -2121,14 +2128,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Napaka" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2146,210 +2153,210 @@ msgstr "Poizvedba SQL" msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Izvedi poizvedbo" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Osveži" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Urejanje te poizvedbe v vrstici" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profiliranje" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y ob %H.%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Manjkajoč parameter:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Začetek" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Prejšnja" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Naslednja" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Konec" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na zbirko podatkov "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Vstavi" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Prebrskaj" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacije" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Izprazni" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Izvedi" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Natisni" @@ -2367,98 +2374,98 @@ msgstr "" msgid "Font size" msgstr "Velikost pisave" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Naraščajoče" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Padajoče" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Razvrsti" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteriji" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Dodaj/Odstrani vrstice meril" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Dodaj/Odstrani stolpce" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Osveži poizvedbo" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Uporabi tabele" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ali" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "In" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Vstavi" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Briši" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Spremeni" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "katerokoli besedo" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "vse besede" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "točno določeno frazo" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kot običajni izraz (regular expression)" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati iskanja \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2467,7 +2474,7 @@ msgstr[1] "Skupaj: %s zadetka" msgstr[2] "Skupaj: %s zadetki" msgstr[3] "Skupaj: %s zadetkov" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" @@ -2476,44 +2483,44 @@ msgstr[1] "%1$s zadetka v %2$s" msgstr[2] "%1$s zadetki v %2$s" msgstr[3] "%1$s zadetkov v %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Izbriši" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Išči v zbirki podatkov" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Išči besede ali vrednosti (nadomestni znak: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Najdi:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Besede so ločene s presledkom (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Znotraj tabel:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "V stolpcu:" @@ -2558,8 +2565,8 @@ msgstr "Glave vsakih %s vrstic" msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2636,7 +2643,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Prekini proces" @@ -2655,8 +2662,8 @@ msgstr "v poizvedbi" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 @@ -2667,7 +2674,7 @@ msgstr "Prikazujem vrstice" msgid "total" msgstr "skupaj" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" @@ -2678,7 +2685,7 @@ msgstr "Poizvedba je potrebovala %01.4f s" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Z označenim:" @@ -2688,8 +2695,8 @@ msgstr "Z označenim:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Označi vse" @@ -2727,15 +2734,15 @@ msgstr "Povezave ni mogoče najti" msgid "Too many error messages, some are not displayed." msgstr "Preveč sporočil o napakah; nekatera zato niso prikazana." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Datoteka ni naložen datoteka." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2743,27 +2750,27 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2771,11 +2778,11 @@ msgstr "" "Napaka pri premikanju naložene datoteke, glej [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Ne morem prebrati (premakniti) naložene datoteke." @@ -2784,66 +2791,66 @@ msgstr "Ne morem prebrati (premakniti) naložene datoteke." msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Po tej točki mora biti JavaScript omogočen" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Ni definiranega indeksa!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indeksi" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Pripomba" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primarni ključ je zavržen" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Indeks %s je zavržen" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2854,12 +2861,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Zbirke podatkov" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Strežnik" @@ -2927,18 +2934,18 @@ msgstr "Uporabniki" msgid "Synchronize" msgstr "Sinhroniziraj" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Dvojiški dnevnik" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Podvojevanje" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Spremenljivke" @@ -3079,8 +3086,8 @@ msgstr "" "spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je " "bila struktura tabele spremenjena." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3090,11 +3097,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vrednost" @@ -3102,61 +3109,61 @@ msgstr "Vrednost" msgid "Table Search" msgstr "Iskanje po tabeli" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Uredi/Vstavi" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Izberite stolpce (vsaj enega):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Število vrstic na stran" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Vrstni red prikaza:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Uporabite ta stolpec za označevanje vsake točke" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Največje število vrstic za izris" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Dodatni iskalni pogoji" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Prebrskaj/Uredi točke" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Kako uporabljati" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Ponastavi povečavo" @@ -3242,20 +3249,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Majhno število z decimalno vejico; dovoljene so vrednosti od -3,402823466E" "+38 do -1,175494351E-38, 0 in od 1,175494351E-38 do 3,402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od " -"-1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " +"Število z decimalno vejico z natančnostjo double; dovoljene so vrednosti od -" +"1,7976931348623157E+308 do -2,2250738585072014E-308, 0 in od " "2,2250738585072014E-308 do 1,7976931348623157E+308" #: libraries/Types.class.php:311 @@ -3543,7 +3550,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabele" @@ -3557,12 +3564,12 @@ msgstr "Tabele" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Podatki" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Presežek" @@ -3670,7 +3677,7 @@ msgstr "Odprto" msgid "Closed" msgstr "Zaprto" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3809,22 +3816,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Nastavitev je onemogočena, zato ne bo uporabljena pri vaši konfiguraciji" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Določi vrednost: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Povrni privzeto vrednost" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Dovoli uporabnikom prilagajati to vrednost" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Ponastavi" @@ -4115,7 +4122,7 @@ msgstr "Nabor znakov datoteke" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Oblika" @@ -4224,7 +4231,7 @@ msgstr "Označi ključ" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Vrsta MIME" @@ -4260,7 +4267,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Obdaj imena tabel in stolpcev z enojnimi poševnimi narekovaji" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Združljivostni način SQL" @@ -5838,10 +5845,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Potrebuje omogočen Preverjalnik SQL" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6106,7 +6113,7 @@ msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP." msgid "possible deep recursion attack" msgstr "možen napad globoke rekurzije" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6114,48 +6121,56 @@ msgstr "" "Strežnik se ne odziva (ali pa lokalna vtičnica strežnika ni pravilno " "konfigurirana)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Strežnik se ne odziva." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Podrobnosti ..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Povezava za controluserja, kot je določena v vaši konfiguraciji, je " "spodletela." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Spremeni geslo" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Brez gesla" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ponovno vnesi" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Šifriranje gesel" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Združljivo z MySQL 4.0" @@ -6286,8 +6301,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -6367,7 +6382,7 @@ msgstr "potrdil(-a) %2$s dne %1$s" msgid "authored on %1$s by %2$s" msgstr "spremenil(-a) %2$s dne %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6377,33 +6392,33 @@ msgstr "" "pa gre za znan hrošč v brskalnikih, ki temeljijo na webkitu (Safari, Google " "Chrome, Arora itn.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s od %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Nalaganje datoteke za uvoz ..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Preostane približno %MIN min. in %SEC sek." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Preostane približno %SEC sek." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Datoteka je v obdelavi, prosim, počakajte." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6411,30 +6426,30 @@ msgstr "" "Prosim, bodite potrpežljivi, datoteka se nalaga. Podrobnosti o nalaganju " "niso na voljo." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Uvažanje v trenutni strežnik" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Uvažanje v zbirko podatkov \"%s\"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Uvažanje v tabelo \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Datoteka za uvoz:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Datoteka je lahko stisnjena (%s) ali nestisnjena." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6521,71 +6536,71 @@ msgstr "" "Velikost spominskega medpomnilnika, ki ga InnoDB uporablja za predpomnjenje " "podatkov in indeksov svojih tabel." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Stanje InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Uporaba zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "strani" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Proste strani" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Umazane strani" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Strani, ki vsebujejo podatke" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Strani za izplakniti" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Zasedene strani" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Zapahnjene strani" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Dejavnost zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Zahtev branja" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Zahtev pisanja" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Zgrešena branja" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Čakajoča pisanja" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Zgrešena branja v %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Čakajoča pisanja v %" @@ -6818,8 +6833,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -6836,128 +6851,128 @@ msgstr "Blog PrimeBase XT avtorja Paula McCullagha" msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Oglejte si vsebine strukture s klikom na njeno ime" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo " "\"Možnosti\"" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Pojdi v zbirko podatkov: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Pojdi na tabelo: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Pojdi na pogled: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Skrij" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Dvojiško" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7001,7 +7016,7 @@ msgstr "Dodaj predpono tabele" msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" @@ -7288,7 +7303,7 @@ msgstr "Možnosti tabele" msgid "Rename table to" msgstr "Preimenuj tabelo v" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Pogon skladiščenja" @@ -7402,8 +7417,8 @@ msgstr "Dobrodošli v %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7479,21 +7494,21 @@ msgstr "Napačno uporabniško ime/geslo. Dostop zavrnjen." msgid "Can not find signon authentication script:" msgstr "Ne morem najti overitvenega skripta signon:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Datoteka %s ne vsebuje nobenega identifikacijskega ključa" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Overitev strojne opreme je spodletelo" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Vstavljen ni noben overitveni ključ" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Potrjevanje ..." @@ -7632,20 +7647,21 @@ msgstr "Prikaži vrste MIME" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Gostitelj" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Čas nastanka" @@ -7899,7 +7915,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Neveljavno število stolpcev v vnosu CSV v vrstici %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Ime tabele" @@ -8144,7 +8160,7 @@ msgstr "Ustvarjanje datotek PDF" msgid "Displaying Column Comments" msgstr "Prikazovanje pripomb stolpcev" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" @@ -8214,7 +8230,7 @@ msgstr "Počisti vse" msgid "Slave configuration" msgstr "Konfiguracija podrejencev" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik" @@ -8228,8 +8244,8 @@ msgstr "" "[mysqld]:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8249,15 +8265,15 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Spremenljivka" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID strežnika" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8265,17 +8281,17 @@ msgstr "" "Samo podrejenci, ki so bili zagnani z možnostjo --report-host=host_name, so " "vidni na tem seznamu." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Kateri koli uporabnik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8284,27 +8300,27 @@ msgstr "Kateri koli uporabnik" msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8313,7 +8329,7 @@ msgstr "" "Ko je uporabljena tabela Host, je to polje prezrto in so namesto njega " "uporabljene vrednosti shranjene v tabeli Host." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Ustvari geslo" @@ -8372,7 +8388,7 @@ msgstr "Podrobnosti" msgid "Event name" msgstr "Ime dogodka" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Vrsta dogodka" @@ -8718,7 +8734,7 @@ msgstr "Dogodka imenovanega %1$s ni mogoče najti v zbirki podatkov %2$s" msgid "There are no events to display." msgstr "Ni dogodkov za prikaz." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8727,7 +8743,7 @@ msgstr "Ni dogodkov za prikaz." msgid "The %s table doesn't exist!" msgstr "Tabela %s ne obstaja!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8773,91 +8789,91 @@ msgstr "Atributi" msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Ustvari novo stran" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Ime strani" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Samodejna postavitev temelječa na" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Notranja razmerja" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Izberite stran za urejanje" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Izberi stran" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Izberi tabele" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Imena stolpcev" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Prikaži relacijsko shemo" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Izberite relacijsko vrsto izvoza" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Pokaži mrežo" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Pokaži barvo" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Pokaži dimenzije tabel" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Prikaži vse tabele enake širine" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Slovar podatkov" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Prikaži samo ključe" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Ležeče" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Pokončno" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Usmerjenost" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Velikost papirja" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8865,7 +8881,7 @@ msgstr "" "Trenutna stran vsebuje sklice na tabele, ki ne obstajajo več. Ali želite " "izbrisati te sklice?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Preklopi odložišče (scratchboard)" @@ -9170,7 +9186,7 @@ msgstr "Uporabniški dostop do "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Uporabnik" @@ -9307,8 +9323,8 @@ msgstr "Pregled uporabnikov" 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 " @@ -9369,11 +9385,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -9468,7 +9484,7 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" @@ -9481,12 +9497,12 @@ msgstr "Sledenje je aktivno." msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" @@ -9514,14 +9530,14 @@ msgid "Column %s has been dropped" msgstr "Stolpec %s je zavržen" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primarni" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -9531,7 +9547,7 @@ msgid "Spatial" msgstr "Prostorsko" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Polno besedilo" @@ -9555,7 +9571,7 @@ msgstr "Pogled relacij" msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." @@ -9563,7 +9579,7 @@ msgstr "Dodati morate vsaj en stolpec." msgid "Add column" msgstr "Dodaj stolpec" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" @@ -9586,15 +9602,15 @@ msgstr "Po %s" msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistika vrstic" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statično" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamično" @@ -9602,15 +9618,15 @@ msgstr "dinamično" msgid "partitioned" msgstr "po particijah" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Dolžina vrstice" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Velikost vrstice" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Naslednji samodejni indeks" @@ -9656,15 +9672,15 @@ msgstr "Dodaj indeks SPATIAL" msgid "Add FULLTEXT index" msgstr "Dodaj indeks FULLTEXT" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Podatki" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Poraba prostora" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Učinkovito" @@ -9697,7 +9713,7 @@ msgstr "" msgid "Move column" msgstr "Premakni stolpec" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9706,11 +9722,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:145 msgid "Transformation options" msgstr "Možnosti pretvorbe" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9722,33 +9738,33 @@ msgstr "" "enojni narekovaj (\"'\"), morate pred znak postaviti (še eno) poševnico " "nazaj (npr. '\\\\xyz' ali 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "Podatki ENUM ali SET predolgi?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Pridobi več prostora za urejanje" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Brez" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Kot določeno:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "prvi" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Definicija PARTITION" @@ -9954,7 +9970,7 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Brez zbirk podatkov" @@ -10233,29 +10249,29 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Ime dnevnika" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Položaj" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Izvirni položaj" @@ -10263,7 +10279,7 @@ msgstr "Izvirni položaj" msgid "Character Sets and Collations" msgstr "Nabori znakov in pravila za razvrščanje znakov" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -10272,24 +10288,24 @@ msgstr[1] "Uspešno sem zavrgel %1$d zbirki podatkov." msgstr[2] "Uspešno sem zavrgel %1$d zbirke podatkov." msgstr[3] "Uspešno sem zavrgel %1$d zbirk podatkov." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistika zbirk podatkov" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Podvojevanje glavnega strežnika" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Podvojevanje podrejencev" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Omogoči statistiko" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10359,40 +10375,40 @@ msgstr "Uspešno sem osvežil privilegije." msgid "Unknown error" msgstr "Neznana napaka" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Ne morem se povezati z glavnim strežnikom %s." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Ne morem spremeniti glavnega strežnika" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Glavni strežnik je uspešno spremenjen v %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Pokaži povezane podrejence" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10401,11 +10417,11 @@ msgstr "" "Strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ga " "želite konfigurirati?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Konfiguracija glavnega strežnika" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10419,19 +10435,19 @@ msgstr "" "prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih " "zbirk podatkov. Prosimo, izberite način:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Podvoji vse zbirke podatkov; prezri:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Prezri vse zbirke podatkov; podvoji:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Prosimo, izberite zbirke podatkov:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10439,7 +10455,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:260 +#: server_replication.php:287 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 " @@ -10449,83 +10465,83 @@ msgstr "" "Nato bi morali videti sporočilo, ki vam sporoča, da je strežnik " "konfiguriran kot glavni strežnik" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Podrejenčeva nit SQL ni zagnana!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Podrejenčeva nit IO ni zagnana!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Oglej si tabelo stanj podrejencev" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Sinhroniziraj zbirke podatkov z glavnim strežnikom" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Upravljaj podrejenca:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Polni začetek" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Polni konec" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Ponovno zaženi podrejenca" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Zaženi samo nit SQL" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Ustavi samo nit SQL" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Zaženi samo nit IO" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Ustavi samo nit IO" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Upravljanje napak:" -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Preskoči trenutno napako" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Preskoči naslednjo" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "napak." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10534,130 +10550,130 @@ msgstr "" "Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite " "konfigurirati?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Upravljavec" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Predpomnilnik poizvedb" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Niti" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Začasni podatki" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Zakasnjena vstavljanja" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Predpomnilnik ključev" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Stiki" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Razvrščanje" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinator transakcij" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Izplakni (zapri) vse tabele" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Pokaži odprte tabele" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Prikaži gostitelje podrejencev" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Prikaži stanje podrejencev" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Izplakni predpomnilnik poizvedb" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Podatki o izvajanju" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Vse spremenljivke stanja" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Nadziranje" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Svetovalec" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Število podatkovnih točk: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Hitrost osveževanja: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filtri" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Vsebuje besedo:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Prikaži samo opozorilne vrednosti" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Prikaži neoblikovane vrednosti" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Sorodne povezave:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Zaženi analitik" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Navodila" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10665,7 +10681,7 @@ msgstr "" "Svetovalni sistem lahko nudi priporočila o strežniških spremenljivkah tako, " "da analizira spremenljivke stanja strežnika." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10674,7 +10690,7 @@ msgstr "" "Kakor koli, pomnite, da sistem nudi priporočila, ki temeljijo na preprostih " "računih in splošnih smernicah, ki morda ne ustrezajo vašemu sistemu." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10685,7 +10701,7 @@ msgstr "" "razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen " "učinek." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10696,31 +10712,31 @@ msgstr "" "podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Vprašanj od zagona: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "Št." -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Strežnik MySQL deluje že %1$s. Zagnal se je %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10728,18 +10744,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Strežnik MySQL deluje kot glavni strežnik v postopku podvojevanja." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10747,11 +10763,11 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10759,35 +10775,35 @@ msgstr "" "Na zaposlenem strežniku lahko števci bajtov naštejejo preveč, zato je ta " "statistika, kot jo poroča strežnik MySQL, morda napačna." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Prejeto" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Poslano" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "največ sočasnih povezav" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Ukaz" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10795,11 +10811,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10809,18 +10825,18 @@ msgstr "" "dnevnika, vendar je ta presegel vrednost binlog_cache_size, zato so bile za " "shranitev izjav iz transakcije uporabljene začasne datoteke." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Število transakcij, ki so uporabile začasni predpomnilnik dvojiškega " "dnevnika." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Število poskusov povezave (uspešnih ali ne) na strežnik MySQL." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10832,11 +10848,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10844,7 +10860,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10852,7 +10868,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10860,23 +10876,23 @@ msgstr "" "Število upravljalnih niti INSERT DELAYED v uporabi. Vsaka različna tabela, " "na kateri se uporabi INSERT DELAYED, dobi svojo lastno nit." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10886,7 +10902,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10896,7 +10912,7 @@ msgstr "" "kaže, da strežnik izvaja mnogo pregledov indeksa; na primer: SELECT col1 " "FROM foo, pri čemer se predpostavlja, da je col1 indeksiran." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10905,7 +10921,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10915,7 +10931,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10923,7 +10939,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10935,7 +10951,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10947,36 +10963,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Število strani zaloge medpomnilnika, za katere je bila zaprošena izplaknitev." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10986,7 +11002,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10998,11 +11014,11 @@ msgstr "" "lahko izračuna tudi kot Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11010,7 +11026,7 @@ msgstr "" "Število začetih \"naključnih\" vnaprejšnjih branj InnoDB. To se zgodi, ko " "poizvedba zahteva pregled večjega dela tabele, vendar v naključnem redu." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11018,11 +11034,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11030,7 +11046,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11044,52 +11060,52 @@ msgstr "" "čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " "morala biti vrednost majhna." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Število strani, ki so bile zapisane za posege dvojnega pisanja (doublewrite)." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11097,35 +11113,35 @@ msgstr "" "Število čakanj, ki smo jih imeli, ker je bil medpomnilnik dnevnika premajhen " "in je bilo potrebno počakati, da se pred nadaljevanjem izplakne." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11133,51 +11149,51 @@ msgstr "" "Vgrajena velikost strani InnoDB (privzeto 16 KB). Veliko vrednosti je štetih " "v straneh; velikost strani omogoča preprosto pretvorbo v bajte." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11186,7 +11202,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11194,7 +11210,7 @@ msgstr "" "Število neuporabljenih blokov v predpomnilniku ključev. To vrednost lahko " "uporabite, da ugotovite, koliko predpomnilnika ključev je v uporabi." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11204,15 +11220,15 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Število zahtev za branje bloka ključev iz predpomnilnika." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11222,7 +11238,7 @@ msgstr "" "je vaša vrednost key_buffer_size najverjetneje premajhna. Razmerje " "pogrešitev predpomnilnika se lahko izračuna kot Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11230,22 +11246,22 @@ msgstr "" "Napačno izračunan predpomnilnik ključev kot delež fizičnih branj v " "primerjavi z zahtevami za branje (izračunana vrednost)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Število zahtev za pisanje bloka ključev v predpomnilnik." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Število fizičnih pisanj bloka ključev na disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Odstotek fizičnih zapisov v primerjavi z zahtevami za zapis (izračunana " "vrednost)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11256,17 +11272,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "Največje število sočasno uporabljenih povezav od zagona strežnika." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Število vrstic, ki čakajo na zapis v vrsti INSERT DELAYED." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11274,19 +11290,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Število odprtih tokov (uporabljenih v glavnem za beleženje)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11296,19 +11312,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11321,7 +11337,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11329,19 +11345,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11349,11 +11365,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Število stikov, ki so uporabili iskanje območja na referenčni tabeli." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11361,7 +11377,7 @@ msgstr "" "Število stikov brez ključev, ki preverjajo uporabo ključev po vsaki vrstici. " "(Če to ni 0, previdno preverite indekse vaših tabel.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11369,16 +11385,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Število stikov, ki so izvedli celotni pregled na prvi tabeli." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Število začasnih tabel, ki so trenutno odprte s strani niti SQL podrejencev." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11386,11 +11402,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "To je ON, če je strežnik podrejenec, povezan z glavnim strežnikom." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11398,12 +11414,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Število poizvedb, ki so porabile več kot long_query_time sekund." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11413,23 +11429,23 @@ msgstr "" "Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Število razvrščanj, ki so bila storjena s pregledovanjem tabele." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11441,7 +11457,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11451,11 +11467,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " "povečajte svoj thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11466,47 +11482,47 @@ msgstr "" "velik, boste morda želeli povečati vrednost thread_cache_size. (Po navadi to " "ne izboljša zmogljivosti v veliki meri, če imate dobro izvedbo niti.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Začni nadziranje" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Navodila/Namestitev" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Preurejanje/urejanje grafikonov je končano" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Dodaj grafikon" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Preuredi/uredi grafikone" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Stolpci grafikona" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11514,15 +11530,15 @@ msgstr "" "Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " "zapleteno nastavitev, jo boste morda želeli izvoziti." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Povrni na privzeto" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Navodila nadziranja" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11536,7 +11552,7 @@ msgstr "" "general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " "poveča obremenitev strežnika do 15 %" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11548,11 +11564,11 @@ msgstr "" "tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " "strežniške zmožnosti izrisa grafikonov." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Uporaba monitorja:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11563,7 +11579,7 @@ msgstr "" "pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " "grafikonu." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11575,11 +11591,11 @@ msgstr "" "grafikon. Ko potrdite, bo to naložilo tabelo združenih poizvedb, kjer lahko " "kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Prosimo, pomnite:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11592,79 +11608,79 @@ msgstr "" "časovni razpon ter onemogočite general_log in počistite njene tabele, ko " "nadziranja ne potrebujete več." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Prednastavljeni grafikon" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Spremenljivke stanja" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Izberite serije:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Pogosto nadzirano" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "ali vnesite ime spremenljivke:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Prikaži kot vrednost razlike" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Uporabi delitelja" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Pripni enoto k vrednostim podatkov" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Dodaj serijo" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Počisti serije" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Serije v grafikonu:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Statistika dnevnikov" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Izbrano časovno območje:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Analitik poizvedb" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11673,7 +11689,7 @@ msgstr[1] "%d sekundi" msgstr[2] "%d sekunde" msgstr[3] "%d sekund" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11794,19 +11810,19 @@ msgstr "" "Ciljna zbirka podatkov bo popolnoma sinhronizirana z izvorno zbirko " "podatkov. Izvorna zbirka podatkov bo ostala nespremenjena." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Nastavljanje spremenljivke je spodletelo" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Spremenljivke in nastavitve strežnika" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Vrednost seje" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Skupna vrednost" @@ -12140,42 +12156,42 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." msgid "Wrong data" msgstr "Napačni podatki" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Ustvaril" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Stolpce sem uspešno premaknil." @@ -12306,16 +12322,16 @@ msgstr "Uredi indeks" msgid "Index name:" msgstr "Ime indeksa:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj indeksu  %s stolpec(ce)" @@ -12479,38 +12495,38 @@ msgstr "Izvozi kot %s" msgid "Show versions" msgstr "Prikaži različice" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktiviraj sledenje za %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Aktiviraj sledenje %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Ustvari različico %1$s tabele %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Ustvari različico" @@ -12891,8 +12907,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Trenutni delež prostega pomnilnika predpomnilnika poizvedb je v primerjavi s " "skupnim pomnilnikom predpomnilnima poizvedb %s %%. Moral bi biti nad 80 %%" @@ -13047,8 +13063,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s %% vseh razvrščanj povzroča začasne tabele; vrednost bi morala biti nižja " "od 10 %%." diff --git a/po/sq.po b/po/sq.po index 6b0c498f30..8aaed058d4 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:42+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Numri i faqes:" @@ -40,36 +40,36 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Kërko" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Kërko" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Zbato" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Emri i kyçit" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Përshkrimi" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Përdor këtë vlerë" @@ -118,18 +118,18 @@ msgstr "U krijua baza e të dhënave %1$s." msgid "Database comment: " msgstr "Komenti për databazën: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,7 +137,7 @@ msgstr "Komentet e tabelës" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -145,12 +145,12 @@ msgstr "Komentet e tabelës" msgid "Column" msgstr "Emrat e kollonave" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Emrat e kollonave" msgid "Type" msgstr "Lloji" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Lloji" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Prezgjedhur" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Prezgjedhur" msgid "Links to" msgstr "Lidhje me" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Lidhje me" msgid "Comments" msgstr "Komente" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Komente" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Jo" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Jo" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Po" @@ -275,35 +275,35 @@ msgid "View dump (schema) of database" msgstr "Shfaq dump (skema) e databazës" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Zgjidh gjithçka" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Asnjë zgjedhje" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -315,12 +315,12 @@ 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_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -330,14 +330,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "rreshta" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Madhësia" @@ -350,7 +350,7 @@ msgstr "në përdorim" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Krijimi" @@ -358,7 +358,7 @@ msgstr "Krijimi" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Ndryshimi i fundit" @@ -366,7 +366,7 @@ msgstr "Ndryshimi i fundit" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Kontrolli i fundit" @@ -382,7 +382,7 @@ msgstr[1] "%s tabela(at)" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -417,9 +417,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databazat" @@ -438,69 +438,69 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Gjendja" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Veprimi" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Shfaq" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Elemino" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Operacione" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Vetëm struktura" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Databazat" @@ -520,12 +520,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Ndysho emrin e databazës në" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -538,7 +538,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." @@ -548,169 +548,169 @@ msgstr "Dump u ruajt tek file %s." msgid "Invalid export type" msgstr "Lloji i Eksportit" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Shto një fushë të re" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Rreshta që mbarojnë me" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Shto një fushë të re" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Libërshënuesi u fshi." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "File nuk mund të lexohet" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Query SQL u zbatua me sukses" @@ -724,7 +724,7 @@ msgstr "Mbrapa" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." @@ -734,7 +734,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." msgid "Do you really want to execute \"%s\"?" msgstr "Konfermo: " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -784,7 +784,7 @@ msgstr "Treguesi" msgid "Edit Index" msgstr "Treguesi" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Shto një fushë të re" @@ -842,26 +842,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Zgjedhja e serverit" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "query SQL" @@ -872,24 +872,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -911,7 +911,7 @@ msgstr "Zgjedhja e serverit" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Proceset" @@ -931,7 +931,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statistikat e rreshtave" @@ -977,13 +977,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1041,32 +1041,32 @@ msgstr "" msgid "Bytes received" msgstr "Marrë" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Lidhje" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1082,11 +1082,11 @@ msgstr "%s tabela(at)" msgid "Questions" msgstr "Operacione" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1111,12 +1111,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Asnjë lloj" @@ -1216,7 +1216,7 @@ msgstr "Karakteristikat e përgjithshme të relacionit" msgid "Current settings" msgstr "Karakteristikat e përgjithshme të relacionit" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1304,7 +1304,7 @@ msgstr "Shpjego SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Koha" @@ -1413,8 +1413,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" @@ -1668,12 +1668,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Ruaj" @@ -1739,8 +1739,8 @@ msgstr "Rezultati SQL" msgid "Data point content" msgstr "Tabela e përmbajtjes" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Shpërfill" @@ -1848,7 +1848,7 @@ msgstr "Shfaqja e regjistrimeve " msgid "Generate password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" @@ -1973,27 +1973,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2001,37 +2001,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dhj" @@ -2080,32 +2080,32 @@ msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sht" @@ -2238,16 +2238,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "në sekondë" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "në minutë" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "në orë" @@ -2264,7 +2264,7 @@ msgstr "Madhësia maksimum: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentet" @@ -2287,14 +2287,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Gabim" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "query SQL" @@ -2312,83 +2312,83 @@ msgstr "query SQL" msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Shpjego SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Dërgo Query" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Rifresko" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Vleftëso SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Djl" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2396,28 +2396,28 @@ msgctxt "First page" msgid "Begin" msgstr "Fillim" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Paraardhësi" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Në vazhdim" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2425,106 +2425,106 @@ msgctxt "Last page" msgid "End" msgstr "Fund" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Shto" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Shfleto" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacione" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "directory e upload të server-it web" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Zbraz" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Printo" @@ -2541,102 +2541,102 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Në ngjitje" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Në zbritje" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Renditja" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteri" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Shto/Fshi rreshtin e kriterit" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Përditëso kërkesën" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Përdor tabelat" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ose" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Dhe" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Shto" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Fshi" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ndrysho" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "Kërkesë SQL tek databaza %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "të paktën një prej fjalëve" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "të gjitha fjalët" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "frazën e saktë" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "si shprehje e rregullt" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultatet e kërkimit për \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2644,7 +2644,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Gjithsej: %s korrispondues(ë)" msgstr[1] "Gjithsej: %s korrispondues(ë)" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2652,49 +2652,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Dump i të dhënave për tabelën" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Fshi" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Kërko në databazë" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Gjej:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Fjalët veçohen me anë të një hapësirë bosh (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tek tabela(at):" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2750,8 +2750,8 @@ msgstr "Zbaton query nga libërshënuesi" msgid "Sort by key" msgstr "Rendit sipas kyçit" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2838,7 +2838,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Hiq" @@ -2855,8 +2855,8 @@ msgstr "tek query" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2867,7 +2867,7 @@ msgstr "Shfaqja e regjistrimeve" msgid "total" msgstr "Gjithsej" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" @@ -2878,7 +2878,7 @@ msgstr "Query ka zgjatur %01.4f sec" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" @@ -2888,8 +2888,8 @@ msgstr "N.q.s. të zgjedhur:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Zgjidh gjithçka" @@ -2930,51 +2930,51 @@ msgstr "Lidhja nuk u gjet" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2983,69 +2983,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Asnjë tregues i përcaktuar!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Tregues" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Collation" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Komente" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Kyçi primar u eleminua" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Treguesi %s u eleminua" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3054,12 +3054,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databazat" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Serveri" @@ -3129,19 +3129,19 @@ msgstr "Përdorues" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "Binar" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikimi" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Të ndryshueshmet" @@ -3276,8 +3276,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksioni" @@ -3287,11 +3287,11 @@ msgstr "Funksioni" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vlerë" @@ -3301,67 +3301,67 @@ msgstr "Vlerë" msgid "Table Search" msgstr "Kërko" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Shto" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Zgjidh fushat (të paktën një):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "regjistrime për faqe" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Mënyra e shfaqjes:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "query SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3436,14 +3436,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3693,7 +3693,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabela" @@ -3707,12 +3707,12 @@ msgstr "Tabela" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Të dhëna" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Mbi limit" @@ -3825,7 +3825,7 @@ msgstr "" msgid "Closed" msgstr "Thonjëza të pambyllura" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3974,22 +3974,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Rinis" @@ -4268,7 +4268,7 @@ msgstr "Familja gërmave të file:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Formati" @@ -4392,7 +4392,7 @@ msgstr "Kyçi i etiketës" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "Lloji MIME" @@ -4433,7 +4433,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Përdor backquotes me emrat e tabelave dhe fushave" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5940,10 +5940,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6198,54 +6198,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Serveri nuk përgjigjet" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Asnjë fjalëkalim" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Rifut" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6399,8 +6407,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6488,71 +6496,71 @@ msgstr "Versioni i MySQL" msgid "authored on %1$s by %2$s" msgstr "Versioni i MySQL" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "E pamundur kryerja e login tek server-i MySQL" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Asnjë databazë" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Asnjë databazë" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6632,72 +6640,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s u rifreskua" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6888,8 +6896,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6906,126 +6914,126 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 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)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vetëm struktura" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, 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 " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "directory e upload të server-it web" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Mbrapa" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7077,7 +7085,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7372,7 +7380,7 @@ msgstr "Opcione për tabelën" msgid "Rename table to" msgstr "Riemërto tabelën në" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7496,8 +7504,8 @@ msgstr "Mirësevini tek %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7571,21 +7579,21 @@ msgstr "Emër përdoruesi apo fjalëkalim i gabuar. Ndalohet hyrja." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7749,20 +7757,21 @@ msgstr "Lloje MIME në dispozicion" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Gjeneruar më" @@ -8008,7 +8017,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8270,7 +8279,7 @@ msgstr "Krijimi i PDF-ve" msgid "Displaying Column Comments" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" @@ -8337,7 +8346,7 @@ msgstr "Asnjë zgjedhje" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8348,8 +8357,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8370,32 +8379,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "E ndryshueshme" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "Serveri" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Çfarëdo përdorues" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8404,34 +8413,34 @@ msgstr "Çfarëdo përdorues" msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8495,7 +8504,7 @@ msgstr "" msgid "Event name" msgstr "Lloji i Eksportit" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "Lloji i Eksportit" @@ -8879,7 +8888,7 @@ msgstr "Nuk gjenden tabela në databazë." msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8889,7 +8898,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" nuk ekziston!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8936,102 +8945,102 @@ msgstr "Pronësi" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Krijo një faqe të re" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numri i faqes:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Faqosje automatike" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Relacione të brendshme" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Ju lutem zgjidhni faqen që dëshironi të modifikoni" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Zgjidh Tabelat" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Zgjidh Tabelat" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Emrat e kollonave" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema relacionale" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Shfaq rrjetën" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Shfaq ngjyrën" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Shfaq madhësinë e tabelave" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Shfaq të gjitha tabelat me të njëjtën gjerësi" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Shfaq vetëm kyçet" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Horizontale" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Vertikale" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Krijimi" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Përmasat e fletës" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9039,7 +9048,7 @@ msgstr "" "Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi " "t'i eleminoni këto riferimente?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "(ç')aktivo scratchboard" @@ -9355,7 +9364,7 @@ msgstr "Përdoruesit që kanë hyrje tek "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Përdorues" @@ -9496,8 +9505,8 @@ msgstr "Paraqitja e përgjithshme e përdoruesve" 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ë " @@ -9563,11 +9572,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -9665,7 +9674,7 @@ msgstr "" "Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " "prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" @@ -9678,12 +9687,12 @@ msgstr "Gjurmimi është aktiv." msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" @@ -9715,14 +9724,14 @@ msgid "Column %s has been dropped" msgstr "Tabela %s u eleminua" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primar" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Treguesi" @@ -9732,7 +9741,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Teksti komplet" @@ -9759,7 +9768,7 @@ msgstr "Shiko relacionet" msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9770,7 +9779,7 @@ msgstr "Zgjidh të paktën një kollonë për të shfaqur" msgid "Add column" msgstr "Shto një fushë të re" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" @@ -9794,15 +9803,15 @@ msgstr "Mbas %s" msgid "Create an index on  %s columns" msgstr "Krijo një tregues tek  %s columns" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamik" @@ -9810,15 +9819,15 @@ msgstr "dinamik" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Madhësia e rreshtit" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9867,16 +9876,16 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 #, fuzzy msgid "Information" msgstr "Informacione mbi Identifikimin" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Hapësira e përdorur" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektiv" @@ -9918,7 +9927,7 @@ msgstr "" msgid "Move column" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9927,11 +9936,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:145 msgid "Transformation options" msgstr "Opcione të transformimeve" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9943,36 +9952,36 @@ msgstr "" "(\"\\\") apo një apostrofë (\"'\") midis këtyre vlerave, duhet ti backslash-" "oni (për shembull '\\\\xyz' ose 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Asnjë lloj" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Mbas %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10178,7 +10187,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Asnjë databazë" @@ -10492,30 +10501,30 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Fusha" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10523,7 +10532,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "Familje gërmash dhe Collations" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10531,24 +10540,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databaza u eleminuan korrektësisht." msgstr[1] "%s databaza u eleminuan korrektësisht." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistikat e databazave" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Aktivo Statistikat" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10621,50 +10630,50 @@ msgstr "Të drejtat u përditësuan me sukses." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Të drejtat u përditësuan me sukses." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10673,123 +10682,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Të lutem, zgjidh një databazë" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Teksti komplet" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Vetëm struktura" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Vetëm struktura" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10797,155 +10806,155 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "Lloji i query" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "Përdor shtimet me vonesë" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "Shfaq tabelat" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informacione mbi Runtime" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "regjistrime për faqe" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Rifresko" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mos ndrysho fjalëkalim" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "Shfaq tabelat" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "Shfaq tabelat" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacione" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Lloji i query" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funksioni" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10953,118 +10962,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Instruksione" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ky server MySQL po punon që prej %s. U nis më %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Marrë" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Dërguar" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komanda" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11072,78 +11081,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11151,7 +11160,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11159,42 +11168,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11202,33 +11211,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11237,243 +11246,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Familja gërmave të file:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11481,99 +11490,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11581,18 +11590,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11600,69 +11609,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Gjurmimi nuk është aktiv." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sht" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy msgid "Add chart" msgstr "Shto një fushë të re" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Shto/Fshi kollonat e fushës" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11671,7 +11680,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11679,18 +11688,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11698,11 +11707,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11710,90 +11719,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ndysho emrin e databazës në" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Zgjidh Tabelat" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Shto një përdorues të ri" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "query SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statistikat e rreshtave" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Zgjidh Tabelat" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lloji i query" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11801,7 +11810,7 @@ msgid_plural "%d seconds" msgstr[0] "në sekondë" msgstr[1] "në sekondë" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11921,19 +11930,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Të ndryshueshmet dhe parametrat e Serverit" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Vlera seancës" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Vlerë Globale" @@ -12225,44 +12234,44 @@ msgstr "" msgid "Wrong data" msgstr "Asnjë databazë" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "Rezultati SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Gjeneruar nga" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiketë" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12418,18 +12427,18 @@ msgstr "Shfaq për printim" msgid "Index name:" msgstr "Emri i treguesit :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Lloji i treguesit :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Shto tek treguesi i  %s kolonës(ave)" @@ -12601,38 +12610,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versioni i MySQL" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" @@ -12993,8 +13002,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13122,8 +13131,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13982,8 +13991,8 @@ msgstr "" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar " -#~ "%s queries." +#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %" +#~ "s queries." #~ msgid "Chart generated successfully." #~ msgstr "Të drejtat u përditësuan me sukses." diff --git a/po/sr.po b/po/sr.po index d665063c78..ea17240131 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:41+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian \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: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Број странице:" @@ -41,36 +41,36 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Претраживање" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Претраживање" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Крени" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Име кључа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Користи ову вредност" @@ -119,18 +119,18 @@ msgstr "База %1$s је креирана." msgid "Database comment: " msgstr "Коментар базе: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Коментари табеле" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Колона" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Колона" msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Тип" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "Подразумевано" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Подразумевано" msgid "Links to" msgstr "Везе ка" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Везе ка" msgid "Comments" msgstr "Коментари" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Коментари" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Не" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Не" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Да" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Изабери све" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ништа" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База %s је преименована у %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -314,12 +314,12 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Табела" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Редова" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Величина" @@ -349,7 +349,7 @@ msgstr "се користи" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Направљено" @@ -357,7 +357,7 @@ msgstr "Направљено" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Последња измена" @@ -365,7 +365,7 @@ msgstr "Последња измена" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Последња провера" @@ -382,7 +382,7 @@ msgstr[2] "%s табела" msgid "You have to choose at least one column to display" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -418,9 +418,9 @@ msgstr "Провери табелу" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "База података" @@ -440,70 +440,70 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Статус" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Акција" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Прикажи" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Одбаци" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Персијски" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Провери табелу" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "База података" @@ -524,12 +524,12 @@ msgstr "Одабрани тип извоза мора бити сачуван у msgid "Bad parameters!" msgstr "Додај ново поље" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -542,7 +542,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." @@ -552,126 +552,129 @@ msgstr "Садржај базе је сачуван у датотеку %s." msgid "Invalid export type" msgstr "Тип извоза" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додај ново поље" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додај новог корисника" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додај новог корисника" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додај %s поља" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Додај новог корисника" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " -"%sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" +"sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -680,7 +683,7 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: import.php:400 +#: import.php:404 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 " @@ -690,26 +693,26 @@ msgstr "" "или величина датотеке превазилази максималну величину дозвољену у вашој " "конфигурацији PHP-а. Погледајте. See FAQ 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Увоз је успешно завршен, извршено је %d упита." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -717,7 +720,7 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: import.php:513 +#: import.php:517 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." @@ -726,9 +729,9 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL упит је успешно извршен" @@ -742,7 +745,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира читаче који подржавају оквире." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." @@ -752,7 +755,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена." msgid "Do you really want to execute \"%s\"?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -802,7 +805,7 @@ msgstr "Додај ново поље" msgid "Edit Index" msgstr "Уреди следећи ред" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -861,26 +864,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор сервера" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -891,24 +894,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -930,7 +933,7 @@ msgstr "Избор сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процеси" @@ -950,7 +953,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Статистике реда" @@ -1001,13 +1004,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -1069,32 +1072,32 @@ msgstr "" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Конекције" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "бајтова" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЕБ" @@ -1110,11 +1113,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персијски" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1141,12 +1144,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "нема" @@ -1246,7 +1249,7 @@ msgstr "Опште особине релација" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1336,7 +1339,7 @@ msgstr "Објасни SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Време" @@ -1445,8 +1448,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" @@ -1703,12 +1706,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d није исправан број реда." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Сачувај" @@ -1774,8 +1777,8 @@ msgstr "Операције на резултатима упита" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Игнориши" @@ -1885,7 +1888,7 @@ msgstr "Приказ записа" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Направи" @@ -2009,27 +2012,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2037,37 +2040,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "дец" @@ -2116,32 +2119,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Суб" @@ -2275,16 +2278,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "у секунди" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "у минуту" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "на сат" @@ -2301,7 +2304,7 @@ msgstr "Максимална величина: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документација" @@ -2324,14 +2327,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Грешка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL упит" @@ -2349,87 +2352,87 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Изврши SQL упит" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Освежи" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Профилисање" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутине" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2437,28 +2440,28 @@ msgctxt "First page" msgid "Begin" msgstr "Почетак" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Следећи" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2466,106 +2469,106 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Нови запис" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Преглед" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операције" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Испразни" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Штампај" @@ -2582,102 +2585,102 @@ msgstr "" msgid "Font size" msgstr "Величина фонта" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Растући" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Опадајући" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Сортирање" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критеријум" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додај/обриши поље за критеријум" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додај/обриши колону" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ажурирај упит" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Користи табеле" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "или" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "и" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Промени" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "бар једну од речи" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "све речи" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "тачан израз" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "као регуларни израз" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати претраге за \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2686,7 +2689,7 @@ msgstr[0] "Укупно: %s погодака" msgstr[1] "Укупно: %s погодака" msgstr[2] "Укупно: %s погодака" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2695,49 +2698,49 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Обриши" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Претраживање базе" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Речи или вредности које се траже (џокер: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Тражи:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Речи се одвајају размаком (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Унутар табела:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2792,8 +2795,8 @@ msgstr "" msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2879,7 +2882,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Обустави" @@ -2896,8 +2899,8 @@ msgstr "у упиту" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2908,7 +2911,7 @@ msgstr "Приказ записа" msgid "total" msgstr "укупно" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" @@ -2919,7 +2922,7 @@ msgstr "Упит је трајао %01.4f секунди" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Означено:" @@ -2929,8 +2932,8 @@ msgstr "Означено:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Означи све" @@ -2971,17 +2974,17 @@ msgstr "Веза није пронађена" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2989,37 +2992,37 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3028,69 +3031,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Кључ није дефинисан!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Кључеви" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Сортирање" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Коментари" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Примарни кључ је обрисан" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Кључ %s је обрисан" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3099,12 +3102,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Базе" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" @@ -3175,18 +3178,18 @@ msgstr "Корисник" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Бинарни дневник" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Репликација" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Променљиве" @@ -3327,8 +3330,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функција" @@ -3338,11 +3341,11 @@ msgstr "Функција" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Вредност" @@ -3352,68 +3355,68 @@ msgstr "Вредност" msgid "Table Search" msgstr "Претраживање" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Нови запис" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Изабери поља (најмање једно)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додај услове претраживања (део \"WHERE\" упита):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Број редова по страни" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Редослед приказа:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL упит" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Направи \"упит по примеру\" (џокер: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по примеру\" (џокер: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "верзија PHP-a" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3488,14 +3491,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3747,7 +3750,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Табеле" @@ -3761,12 +3764,12 @@ msgstr "Табеле" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Подаци" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Прекорачење" @@ -3883,7 +3886,7 @@ msgstr "" msgid "Closed" msgstr "Наводник није затворен" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4031,22 +4034,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Поништи" @@ -4329,7 +4332,7 @@ msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4453,7 +4456,7 @@ msgstr "Ознака кључа" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-типови" @@ -4494,7 +4497,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Користи ' за ограничавање имена поља" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Мод SQL компатибилности" @@ -6031,10 +6034,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6289,7 +6292,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6297,50 +6300,58 @@ msgid "" "configured)." msgstr "(или прикључак локалног MySQL сервера није исправно подешен)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер не одговара" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, " "није успела." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Промени лозинку" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Нема лозинке" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Поновите унос" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Хеширање лозинке" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6501,8 +6512,8 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -6594,75 +6605,75 @@ msgstr "Направи релацију" msgid "authored on %1$s by %2$s" msgstr "Направи релацију" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Формат датотека за увоз" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Не могу да се пријавим на MySQL сервер" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "База не постоји" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "База не постоји" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Датотека за увоз" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6757,71 +6768,71 @@ msgstr "" "Величина меморијског прихватника које InnoDB користи за кеширање података и " "индекса својих табела." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Коришћење скупа прихватника" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "страна" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Слободне стране" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Прљаве стране" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Стране са подацима" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Стране које треба да буду усклађене" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Заузете стране" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Забрављене стране" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Активност скупа прихватника" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Захтеви за читање" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Захтеви за упис" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Промашаји при читању" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Промашаји читања у %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Чекања на упис у %" @@ -7028,8 +7039,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7046,130 +7057,130 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "База не постоји" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Сакриј" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Бинарни" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7223,7 +7234,7 @@ msgstr "" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7512,7 +7523,7 @@ msgstr "Опције табеле" msgid "Rename table to" msgstr "Промени име табеле у" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Погон складиштења" @@ -7636,8 +7647,8 @@ msgstr "Добродошли на %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 да бисте је направили." @@ -7713,21 +7724,21 @@ msgstr "Погрешно корисничко име/лозинка. Прист msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7893,20 +7904,21 @@ msgstr "Доступни MIME-типови" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Домаћин" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Време креирања" @@ -8151,7 +8163,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Неисправан број поља у CSV улазу на линији %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Назив табеле" @@ -8430,7 +8442,7 @@ msgstr "Прављење PDF-ova" msgid "Displaying Column Comments" msgstr "Приказујем коментаре колоне" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Транформације читача" @@ -8497,7 +8509,7 @@ msgstr "ниједно" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8508,8 +8520,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8532,31 +8544,31 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Променљива" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ИД сервера" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Било који корисник" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8565,34 +8577,34 @@ msgstr "Било који корисник" msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Направи лозинку" @@ -8658,7 +8670,7 @@ msgstr "" msgid "Event name" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Врста догађаја" @@ -9056,7 +9068,7 @@ msgstr "Табеле нису пронађене у бази." msgid "There are no events to display." msgstr "Провери табелу" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9066,7 +9078,7 @@ msgstr "Провери табелу" msgid "The %s table doesn't exist!" msgstr "Табела \"%s\" не постоји!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9113,101 +9125,101 @@ msgstr "Атрибути" msgid "Extra" msgstr "Додатно" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Направи нову страну" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аутоматски распоред" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Унутрашње релације" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Изаберите страну коју мењате" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Изабери све" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Изабери табеле" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Имена колона" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона схема" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Прикажи мрежу" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Прикажи боју" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Прикажи димензије табеле" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Приказ свих табела исте ширине?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Речник података" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Положено" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Усправно" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Направљено" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Димензије папира" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9215,7 +9227,7 @@ msgstr "" "Тренутна страна има референце на табеле које више не постоје. Желите ли да " "обришете те референце?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Укључи/искључи радну таблу" @@ -9520,7 +9532,7 @@ msgstr "Корисници који имају приступ "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Корисник" @@ -9661,8 +9673,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 табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " @@ -9728,11 +9740,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -9827,7 +9839,7 @@ msgstr "" "SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " "неопходне PHP екстензије описане у %sдокументацији%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" @@ -9840,12 +9852,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" @@ -9877,14 +9889,14 @@ msgid "Column %s has been dropped" msgstr "Табела %s је одбачена" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Примарни" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Кључ" @@ -9894,7 +9906,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Текст кључ" @@ -9922,7 +9934,7 @@ msgstr "Релациони поглед" msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9934,7 +9946,7 @@ msgstr "Морате додати барем једно поље." msgid "Add column" msgstr "Додај %s поља" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9959,15 +9971,15 @@ msgstr "После %s" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статистике реда" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамички" @@ -9975,15 +9987,15 @@ msgstr "динамички" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Дужина реда" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Величина реда" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10037,15 +10049,15 @@ msgstr "Додај ново поље" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Информације" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Заузеће" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Ефективне" @@ -10086,7 +10098,7 @@ msgstr "" msgid "Move column" msgstr "Додај/обриши колону" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10095,11 +10107,11 @@ msgstr "" "За листу доступних опција трансформације и њихове трансформације MIME-" "типова, кликните на %sописе трансформација%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опције трансформације" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10111,36 +10123,36 @@ msgstr "" "апостроф (\"'\") у те вредности, ставите обрнуту косу црту испред њих (на " "пример '\\\\xyz' или 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "нема" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "После %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10353,7 +10365,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "База не постоји" @@ -10668,29 +10680,29 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Датотеке" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Назив дневника" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Позиција" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Оригинална позиција" @@ -10698,7 +10710,7 @@ msgstr "Оригинална позиција" msgid "Character Sets and Collations" msgstr "Карактер сетови и сортирање" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10707,24 +10719,24 @@ msgstr[0] "%s база је успешно одбачено." msgstr[1] "%s база је успешно одбачено." msgstr[2] "%s база је успешно одбачено." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статистика базе" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Укључи статистике" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10797,51 +10809,51 @@ msgstr "Привилегије су успешно поново учитане." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Привилегије су успешно поново учитане." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10850,279 +10862,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Изаберите базу" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Текст кључ" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Текст кључ" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Руковалац" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Кеш упита" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Нити" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Привремени подаци" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Одложена уметања" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Кеш кључева" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Спојеви" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Сортирање" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Координатор трансакција" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Очисти (затвори) све табеле" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Прикажи отворене табеле" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Прикажи подређене сервер" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Прикажи статус подређених сервера" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Очисти кеш упита" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Информације о току рада" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Број поља" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Освежи" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Датотеке" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да мењаш лозинку" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Прикажи отворене табеле" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Прикажи отворене табеле" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релације" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Врста упита" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функције" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11130,57 +11142,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Овај MySQL сервер ради већ %s. Покренут је %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11188,47 +11200,47 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Примљено" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Послато" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Наредба" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11238,16 +11250,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11259,11 +11271,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11271,7 +11283,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11279,7 +11291,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11287,23 +11299,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11313,7 +11325,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11323,7 +11335,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11331,7 +11343,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11341,7 +11353,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11349,7 +11361,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11361,7 +11373,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11373,35 +11385,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11411,7 +11423,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11423,11 +11435,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11435,7 +11447,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11443,11 +11455,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11455,7 +11467,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11469,55 +11481,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11525,35 +11537,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11562,51 +11574,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11614,7 +11626,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11622,7 +11634,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11632,17 +11644,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11652,26 +11664,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11681,17 +11693,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11699,39 +11711,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11743,7 +11755,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11751,19 +11763,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11771,11 +11783,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11783,7 +11795,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11791,15 +11803,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11807,11 +11819,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11819,12 +11831,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11834,23 +11846,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11862,7 +11874,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11872,11 +11884,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11888,69 +11900,69 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy msgid "Start Monitor" msgstr "Статус" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додај ново поље" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додај/обриши колону" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11959,7 +11971,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11967,18 +11979,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11986,11 +11998,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11998,92 +12010,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Уклони базу" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Изабери табеле" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неисправан назив табеле" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Додај новог корисника" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Статистике реда" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Изабери све" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Врста упита" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12092,7 +12104,7 @@ msgstr[0] "у секунди" msgstr[1] "у секунди" msgstr[2] "у секунди" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12215,19 +12227,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Серверске променљиве и подешавања" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Вредност сесије" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобална вредност" @@ -12520,44 +12532,44 @@ msgstr "" msgid "Wrong data" msgstr "База не постоји" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Генерисао" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12715,16 +12727,16 @@ msgstr "Додај ново поље" msgid "Index name:" msgstr "Име кључа :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" мора бити име само примарног кључа!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тип кључа :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Додај у кључ  %s колона(е)" @@ -12894,38 +12906,38 @@ msgstr "Тип извоза" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Направи релацију" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Направи релацију" @@ -13292,8 +13304,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13427,8 +13439,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sr@latin.po b/po/sr@latin.po index 6ee729b3e6..cb0efd562d 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:41+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -22,11 +22,11 @@ msgstr "" msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Broj strane:" @@ -41,36 +41,36 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Pretraživanje" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "Pretraživanje" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Koristi ovu vrednost" @@ -119,18 +119,18 @@ msgstr "Baza %1$s je kreirana." msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "Komentari tabele" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolona" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Kolona" msgid "Type" msgstr "Tip" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Tip" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Null" msgid "Default" msgstr "Podrazumevano" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Podrazumevano" msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Veze ka" msgid "Comments" msgstr "Komentari" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ne" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Da" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -314,12 +314,12 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Tabela" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Redova" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Veličina" @@ -349,7 +349,7 @@ msgstr "se koristi" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Napravljeno" @@ -357,7 +357,7 @@ msgstr "Napravljeno" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Poslednja izmena" @@ -365,7 +365,7 @@ msgstr "Poslednja izmena" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Poslednja provera" @@ -381,7 +381,7 @@ msgstr[2] "%s tabela" msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" @@ -417,9 +417,9 @@ msgstr "Proveri tabelu" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Baza podataka" @@ -439,70 +439,70 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Akcija" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Prikaži" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Persijski" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -523,12 +523,12 @@ msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -541,7 +541,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." @@ -551,126 +551,129 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." msgid "Invalid export type" msgstr "Tip izvoza" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Dodaj %s polja" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dodaj %s polja" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for 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:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -679,7 +682,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:400 +#: import.php:404 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 " @@ -689,26 +692,26 @@ msgstr "" "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " "konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, 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:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -716,7 +719,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:513 +#: import.php:517 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." @@ -725,9 +728,9 @@ 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Vaš SQL upit je uspešno izvršen" @@ -741,7 +744,7 @@ msgstr "Nazad" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -751,7 +754,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -801,7 +804,7 @@ msgstr "Ključ" msgid "Edit Index" msgstr "Uredi sledeći red" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -860,26 +863,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -890,24 +893,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -929,7 +932,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Procesi" @@ -949,7 +952,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -1000,13 +1003,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1068,32 +1071,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Konekcije" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "bajtova" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1110,11 +1113,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Persijski" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1141,12 +1144,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "nema" @@ -1246,7 +1249,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1336,7 +1339,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Vreme" @@ -1445,8 +1448,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1703,12 +1706,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d nije ispravan broj reda." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Sačuvaj" @@ -1774,8 +1777,8 @@ msgstr "Operacije na rezultatima upita" msgid "Data point content" msgstr "Veličina pokazivača podataka" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignoriši" @@ -1885,7 +1888,7 @@ msgstr "Prikaz zapisa" msgid "Generate password" msgstr "Napravi lozinku" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Napravi" @@ -2009,27 +2012,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2037,37 +2040,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -2116,32 +2119,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Sub" @@ -2275,16 +2278,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "u minutu" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "na sat" @@ -2301,7 +2304,7 @@ msgstr "Maksimalna veličina: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentacija" @@ -2324,14 +2327,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Greška" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL upit" @@ -2349,87 +2352,87 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Osveži" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Proveri SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Skladištenja" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilisanje" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2437,28 +2440,28 @@ msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Sledeći" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2466,106 +2469,106 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktura" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Novi zapis" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Pregled" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operacije" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Isprazni" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Štampaj" @@ -2582,98 +2585,98 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Rastući" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Opadajući" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortiranje" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterijum" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši kriterijum za polja" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Dodaj/obriši kolone" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Ažuriraj upit" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Koristi tabele" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ili" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "i" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Promeni" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "bar jednu od reči" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "sve reči" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "tačan izraz" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kao regularni izraz" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2681,7 +2684,7 @@ msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodak" msgstr[2] "Ukupno: %s pogodaka" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2690,49 +2693,49 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Obriši" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Pretraživanje baze" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Traži:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Reči se odvajaju razmakom (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Unutar kolone::" @@ -2787,8 +2790,8 @@ msgstr "Izvrši upamćen upit" msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2874,7 +2877,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Obustavi" @@ -2891,8 +2894,8 @@ msgstr "u upitu" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2903,7 +2906,7 @@ msgstr "Prikaz zapisa" msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" @@ -2914,7 +2917,7 @@ msgstr "Upit je trajao %01.4f sekundi" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Označeno:" @@ -2924,8 +2927,8 @@ msgstr "Označeno:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Označi sve" @@ -2966,17 +2969,17 @@ msgstr "Veza nije pronađena" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2984,37 +2987,37 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3023,69 +3026,69 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Ključ nije definisan!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Ključevi" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Sortiranje" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Komentari" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Primarni ključ je obrisan" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Ključ %s je obrisan" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3094,12 +3097,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Baze" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3170,18 +3173,18 @@ msgstr "Korisnik" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binarni dnevnik" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikacija" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Promenljive" @@ -3322,8 +3325,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funkcija" @@ -3333,11 +3336,11 @@ msgstr "Funkcija" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Vrednost" @@ -3347,68 +3350,68 @@ msgstr "Vrednost" msgid "Table Search" msgstr "Pretraživanje" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Novi zapis" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Redosled prikaza:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL upit" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "verzija PHP-a" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3483,14 +3486,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3742,7 +3745,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabele" @@ -3756,12 +3759,12 @@ msgstr "Tabele" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Prekoračenje" @@ -3878,7 +3881,7 @@ msgstr "" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4026,22 +4029,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Poništi" @@ -4325,7 +4328,7 @@ msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4449,7 +4452,7 @@ msgstr "Oznaka ključa" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-tipovi" @@ -4490,7 +4493,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Koristi ' za ograničavanje imena polja" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Mod SQL kompatibilnosti" @@ -6025,10 +6028,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6283,7 +6286,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid " the local MySQL server's socket is not correctly configured)" msgid "" @@ -6291,50 +6294,58 @@ msgid "" "configured)." msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server ne odgovara" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, " "nije uspela." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Promeni lozinku" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Nema lozinke" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Ponovite unos" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Heširanje lozinke" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6495,8 +6506,8 @@ msgstr "" #| "will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -6588,75 +6599,75 @@ msgstr "Napravi relaciju" msgid "authored on %1$s by %2$s" msgstr "Napravi relaciju" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Format datoteka za uvoz" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Baza ne postoji" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Baza ne postoji" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Datoteka za uvoz" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6751,71 +6762,71 @@ msgstr "" "Veličina memorijskog prihvatnika koje InnoDB koristi za keširanje podataka i " "indeksa svojih tabela." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Korišćenje skupa prihvatnika" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "strana" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Slobodne strane" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Prljave strane" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Strane sa podacima" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Strane koje treba da budu usklađene" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Zauzete strane" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Zabravljene strane" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Aktivnost skupa prihvatnika" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Zahtevi za čitanje" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Zahtevi za upis" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Promašaji pri čitanju" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Čekanja na upis" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Promašaji čitanja u %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Čekanja na upis u %" @@ -7022,8 +7033,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7040,130 +7051,130 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "ause of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Ponovo pokreni unošenje sa %s redova" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7215,7 +7226,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7504,7 +7515,7 @@ msgstr "Opcije tabele" msgid "Rename table to" msgstr "Promeni ime tabele u" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Pogon skladištenja" @@ -7627,8 +7638,8 @@ msgstr "Dobrodošli na %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7704,21 +7715,21 @@ msgstr "Pogrešno korisničko ime/lozinka. Pristup odbijen." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7880,20 +7891,21 @@ msgstr "Dostupni MIME-tipovi" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Domaćin" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Vreme kreiranja" @@ -8138,7 +8150,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Neispravan broj polja u CSV ulazu na liniji %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Naziv tabele" @@ -8418,7 +8430,7 @@ msgstr "Pravljenje PDF-ova" msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Tranformacije čitača" @@ -8485,7 +8497,7 @@ msgstr "nijedno" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8496,8 +8508,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8520,31 +8532,31 @@ msgid "Slave status" msgstr "Prikaži status podređenih servera" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Promenljiva" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID servera" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Bilo koji korisnik" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8553,34 +8565,34 @@ msgstr "Bilo koji korisnik" msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Napravi lozinku" @@ -8646,7 +8658,7 @@ msgstr "" msgid "Event name" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Vrsta događaja" @@ -9044,7 +9056,7 @@ msgstr "Tabele nisu pronađene u bazi." msgid "There are no events to display." msgstr "Proveri tabelu" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9054,7 +9066,7 @@ msgstr "Proveri tabelu" msgid "The %s table doesn't exist!" msgstr "Tabela \"%s\" ne postoji!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9101,101 +9113,101 @@ msgstr "Atributi" msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Imena kolona" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaciona shema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Prikaz svih tabela iste širine?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Uspravno" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Napravljeno" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9203,7 +9215,7 @@ msgstr "" "Trenutna strana ima reference na tabele koje više ne postoje. Želite li da " "obrišete te reference?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Uključi/isključi radnu tablu" @@ -9508,7 +9520,7 @@ msgstr "Korisnici koji imaju pristup "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Korisnik" @@ -9649,8 +9661,8 @@ msgstr "Pregled korisnika" 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 " @@ -9716,11 +9728,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -9815,7 +9827,7 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" @@ -9828,12 +9840,12 @@ msgstr "Praćenje je aktivno." msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" @@ -9865,14 +9877,14 @@ msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primarni" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Ključ" @@ -9882,7 +9894,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tekst ključ" @@ -9910,7 +9922,7 @@ msgstr "Relacioni pogled" msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9922,7 +9934,7 @@ msgstr "Morate dodati barem jedno polje." msgid "Add column" msgstr "Dodaj %s polja" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9947,15 +9959,15 @@ msgstr "Posle %s" msgid "Create an index on  %s columns" msgstr "Napravi ključ na %s kolona" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Statistike reda" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamički" @@ -9963,15 +9975,15 @@ msgstr "dinamički" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Dužina reda" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Veličina reda" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10021,15 +10033,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Informacije" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Zauzeće" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Efektivne" @@ -10071,7 +10083,7 @@ msgstr "" msgid "Move column" msgstr "Dodaj/obriši kolonu" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10080,11 +10092,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:145 msgid "Transformation options" msgstr "Opcije transformacije" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10096,36 +10108,36 @@ msgstr "" "apostrof (\"'\") u te vrednosti, stavite obrnutu kosu crtu ispred njih (na " "primer '\\\\xyz' ili 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "nema" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Posle %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10339,7 +10351,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" @@ -10654,29 +10666,29 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Naziv dnevnika" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozicija" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Originalna pozicija" @@ -10684,7 +10696,7 @@ msgstr "Originalna pozicija" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10693,24 +10705,24 @@ msgstr[0] "%s baza je uspešno odbačeno." msgstr[1] "%s baza je uspešno odbačeno." msgstr[2] "%s baza je uspešno odbačeno." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10783,51 +10795,51 @@ msgstr "Privilegije su uspešno ponovo učitane." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspešno ponovo učitane." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10836,279 +10848,279 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Tekst ključ" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo struktura" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo struktura" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Rukovalac" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Keš upita" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Niti" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Odložena umetanja" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Keš ključeva" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Spojevi" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortiranje" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Koordinator transakcija" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Očisti (zatvori) sve tabele" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Prikaži otvorene tabele" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Prikaži podređene server" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Prikaži status podređenih servera" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Očisti keš upita" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Broj polja" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Osveži" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Datoteke" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da menjaš lozinku" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tabele" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tabele" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11116,57 +11128,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "s MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Ovaj MySQL server radi već %s. Pokrenut je %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11174,47 +11186,47 @@ msgstr "" "Na zaposlenom serveru brojači bajtova mogu da se preliju (overrun), tako da " "te statistike, onako kako ih prijavljuje MySQL server, mogu biti netačne." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Primljeno" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Poslato" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Naredba" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "The number of fsync() writes done to the log file." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11224,16 +11236,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Broj transakcija koje su koristile keš privremenog binarnog dnevnika." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11245,11 +11257,11 @@ msgstr "" "povećate vrednost tmp_table_size kako bi učinili da privremene tabele budu " "bazirane u memoriji umesto na disku." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11257,7 +11269,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11265,7 +11277,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -11273,23 +11285,23 @@ msgstr "" "Broj INSERT DELAYED rukovalačkih niti u upotrebi. Svaka posebna tabela nad " "kojom se koristi INSERT DELAYED dobija svoju nit." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11299,7 +11311,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11309,7 +11321,7 @@ msgstr "" "može značiti da server radi puno punih skeniranja indeksa; na primer SELECT " "kol1 FROM nešto, pod pretpostavkom da je kol1 indeksirano." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11317,7 +11329,7 @@ msgstr "" "Broj zahteva za čitanje reda zasnovanih na ključu. Ako je ovaj broj visok, " "to je dobar pokazatelj da su vaši upiti i tabele propisno indeksirani." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11327,7 +11339,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11335,7 +11347,7 @@ msgstr "" "Broj zahteva za čitanjem prethodnog reda u poretku ključeva. Ova metoda " "čitanja se uglavnom koristi za optimizaciju ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11347,7 +11359,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11359,35 +11371,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Broj strana u ostavi bafera za koje je traženo da budu očišćene." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11397,7 +11409,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11409,11 +11421,11 @@ msgstr "" "se takođe može izračunati i na sledeći način Innodb_buffer_pool_pages_total " "- Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11421,7 +11433,7 @@ msgstr "" "Broj „nasumičnih“ pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "upit treba da skenira veliki deo tabele ali nasumičnim redosledom." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11429,11 +11441,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11441,7 +11453,7 @@ msgstr "" "Broj logičkih čitanja koja InnoDB nije mogao da zadovolji iz ostave bafera " "te je morao da radi čitanje pojedinačne strane." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11455,55 +11467,55 @@ msgstr "" "dešavanja ovih čekanja. Ako je veličina ostave bafera postavljena kako " "treba, ova vrednost vi trebalo da je niska." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Broj izvršenih dvoupisnih (doublewrite) upisa i broj strana koje su upisane " "u ovu svrhu." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11511,35 +11523,35 @@ msgstr "" "Broj čekanja koja smo imali zato što je bafer dnevnika bio premali te smo " "morali da sačekamo da bude očišćen pre nastavka." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11548,52 +11560,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosečno vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ukupno vremena provedeno u dobavljanju brava za redove, u milisekundama." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najduže vreme za dobavljanje brave za red, u milisekundama." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Broj puta kada se morala čekati brava za red." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11601,7 +11613,7 @@ msgstr "" "Broj blokova ključeva u kešu ključeva koji su izmenjeni ali još nisu poslati " "na disk. Ovo je ranije bilo poznato kao Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11609,7 +11621,7 @@ msgstr "" "Broj neiskorišćenih blokova u kešu ključeva. Ovu vrednost možete da " "koristite da utvrdite koliki deo keša ključeva je u upotrebi." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11619,17 +11631,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Broj zahteva za čitanje bloka ključeva iz keša." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11639,26 +11651,26 @@ msgstr "" "je vaša vrednost za key_buffer_size verovatno premala. Stepen promašaja keša " "se može izračunati kao Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Broj zahteva za upisivanje bloka ključeva u keš." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Broj fizičkih upisa bloka ključeva na disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11668,17 +11680,17 @@ msgstr "" "upita. Korisno za upoređivanje cene različitih planova upita za isti upit. " "Podrazumevana vrednost 0 znači da još nije bio kompajliran nijedan upit." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Broj redova u INSERT DELAYED redovima čekanja koji čekaju upisivanje." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11686,39 +11698,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Broj otvorenih tokova (koristi se prvenstveno za vođenje dnevnika (logging))." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11730,7 +11742,7 @@ msgstr "" "keša za upite. Keš za upite koristi strategiju najduže nekorišćenog (en: " "least recently used , LRU) da bi odlučio koje upite da ukloni iz keša." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11738,19 +11750,19 @@ msgstr "" "Broj nekeširanih upita (koji se ne mogu keširati ili nisu keširani zbog " "podešavanja query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11758,11 +11770,11 @@ msgstr "" "Broj spojeva koji ne koriste indekste. Ako ova vrednost nije 0, trebalo bi " "pažljivo da proverite indekse vaših tabela." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Broj spojeva koji su koristili pretragu opsega na referentnoj tabeli." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11771,7 +11783,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11779,15 +11791,15 @@ msgstr "" "Broj spojeva koji su koristili opsege na prvoj tabeli. (Obično nije kritično " "čak ni kada je ovo veliko)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "Broj spojeva koji su uradili puno skeniranje prve tabele." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Broj privremenih tabela trenutno otvorenih od strane pomoćne SQL niti." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11795,11 +11807,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ovo je ON ako je ovaj server pomoćni koji je povezan na glavni." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11807,12 +11819,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Broj upita za koje je trebalo više od long_query_time sekudni." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11822,23 +11834,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Broj sortiranja do kojih je došlo skeniranjem tabele." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Broj puta kada je brava za tabelu odmah dobavljena." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11850,7 +11862,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11860,11 +11872,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11876,70 +11888,70 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11948,7 +11960,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11956,18 +11968,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11975,11 +11987,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11987,92 +11999,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Ukloni bazu" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tabele" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Izaberi tabele" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -12081,7 +12093,7 @@ msgstr[0] "u sekundi" msgstr[1] "u sekundi" msgstr[2] "u sekundi" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12204,19 +12216,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Vrednost sesije" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globalna vrednost" @@ -12509,44 +12521,44 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Generisao" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12704,16 +12716,16 @@ msgstr "Za štampu" msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" @@ -12885,38 +12897,38 @@ msgstr "Tip izvoza" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Napravi relaciju" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Napravi relaciju" @@ -13283,8 +13295,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13418,8 +13430,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/sv.po b/po/sv.po index 673642227a..327bf61de8 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-09-01 18:25+0200\n" "Last-Translator: ProUser \n" -"Language-Team: Swedish " -"\n" -"Language: sv\n" +"Language-Team: Swedish \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sida:" @@ -40,36 +40,36 @@ msgstr "" "fönstret, eller så är din webbläsares säkerhetsinställningar konfigurerade " "för att blockera flerfönster uppdateringar." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Sök" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Sök" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Kör" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Nyckelnamn" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Beskrivning" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Använd detta värde" @@ -120,18 +120,18 @@ msgstr "Databas %1$s har skapats." msgid "Database comment: " msgstr "Databaskommentar" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Tabellkommentarer" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Kolumn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Kolumn" msgid "Type" msgstr "Typ" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Typ" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Standardvärde" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Standardvärde" msgid "Links to" msgstr "Länkar till" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Länkar till" msgid "Comments" msgstr "Kommentarer" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Nej" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ja" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Visa dump (schema) av databasen" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Välj alla" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %1$s har bytt namn till %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s har kopierats till %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -309,12 +309,12 @@ msgid "" msgstr "" "Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -324,14 +324,14 @@ msgstr "Tabell" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Rader" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Storlek" @@ -344,7 +344,7 @@ msgstr "används" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Skapande" @@ -352,7 +352,7 @@ msgstr "Skapande" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Senaste uppdatering" @@ -360,7 +360,7 @@ msgstr "Senaste uppdatering" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Senaste kontroll" @@ -375,7 +375,7 @@ msgstr[1] "%s tabeller" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Växla till %sgrafisk modellerare%s" @@ -407,9 +407,9 @@ msgstr "Spårade tabeller" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Databas" @@ -427,66 +427,66 @@ msgstr "Uppdaterad" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Status" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Åtgärd" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Visa" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ta bort spårning för denna tabell" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Radera" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "inaktiv" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Versioner" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Spårningsrapport" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Ej spårade tabeller" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Spåra tabell" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Databas logg" @@ -502,12 +502,12 @@ msgstr "Vald exporttyp måste sparas till fil!" msgid "Bad parameters!" msgstr "Felaktiga parametrar!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte behörighet att spara filen %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har sparats till filen %s." @@ -529,117 +529,124 @@ msgstr "Dump har sparats till filen %s." msgid "Invalid export type" msgstr "Ogiltig export-typ" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Värde för kolumn \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Använd OpenStreetMaps som baslager" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Lägg till en punkt" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Yttre ringen" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Inre ringen" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Lägg till ny linestring" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Lägg till ny inre ring" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Addera polygon" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Addera geometri" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Välj \"GeomFromText\" från \"Funktions\"-kolumnen och klistra in " "nedanstående sträng i \"Value\"-fältet" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Filen kunde inte läsas" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -648,7 +655,7 @@ msgstr "" "Du försökta ladda en fil med en komprimering (%s) som inte stöds. Antingen " "är detta inte implementerat, eller inaktiverat i din konfiguration." -#: import.php:400 +#: import.php:404 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 " @@ -658,28 +665,28 @@ msgstr "" "översteg filens storlek den maximalt tillåtna storleken i din PHP-" "konfiguration. Se [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan inte konvertera filens teckenuppsättning utan teckenuppsättningens " "omvandlingsbibliotek" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen har slutförts korrekt, %d frågor utförda." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,7 @@ msgstr "" "Skriptets tidsbegränsning har överskridits. Om du vill slutföra importen, " "importera samma fil igen så kommer importen att återupptas." -#: import.php:513 +#: import.php:517 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." @@ -696,9 +703,9 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Din SQL-fråga utfördes korrekt" @@ -712,7 +719,7 @@ msgstr "Föregående" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin fungerar bättre med en webbläsare som hanterar ramar." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" satserna är inaktiverade." @@ -721,7 +728,7 @@ msgstr "\"DROP DATABASE\" satserna är inaktiverade." msgid "Do you really want to execute \"%s\"?" msgstr "Vill du verkligen exekvera \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Du är på väg att RADERA en hel databas!" @@ -761,7 +768,7 @@ msgstr "Addera index" msgid "Edit Index" msgstr "Redigera index" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Lägg till %d kolumner till index" @@ -811,24 +818,24 @@ msgstr "Stäng" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redigera" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Live trafik diagram" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Live anslutning/process diagram" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Live sökfrågediagram" @@ -838,24 +845,24 @@ msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Annan" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -875,7 +882,7 @@ msgstr "Server trafik (i Kb)" msgid "Connections since last refresh" msgstr "Anslutningar sedan senaste uppdatering" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Processer" @@ -893,7 +900,7 @@ msgstr "Frågor sedan senaste uppdatering" msgid "Questions (executed statements by the server)" msgstr "Frågor (utförda kommandon från servern)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Visa statistik" @@ -939,13 +946,13 @@ msgstr "System swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "Mb" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "kB" @@ -997,32 +1004,32 @@ msgstr "Antal bitar som skickats" msgid "Bytes received" msgstr "Antal mottagna bital" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Anslutningar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1036,11 +1043,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Frågor" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Inställningar" @@ -1061,12 +1068,12 @@ msgid "Please add at least one variable to the series" msgstr "Lägg till minst en variabel till serien" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Inget" @@ -1166,7 +1173,7 @@ msgstr "Ändra inställningar" msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Diagramtitel" @@ -1251,7 +1258,7 @@ msgstr "Förklara utdata" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Tid" @@ -1347,8 +1354,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" @@ -1561,12 +1568,12 @@ msgstr "Exekveringstid för frågor" msgid "%d is not valid row number." msgstr "%d är inte ett giltigt radnummer." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Spara" @@ -1623,8 +1630,8 @@ msgstr "Frågeresultat" msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ignorera" @@ -1732,7 +1739,7 @@ msgstr "Visa datarad(er)" msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generera" @@ -1831,63 +1838,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "dec" @@ -1925,32 +1932,32 @@ msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Lör" @@ -2065,16 +2072,16 @@ msgstr "Oväntade tecken på rad %s" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "Oväntat tecken på rad %1$s. Förväntad tab, men fann \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "per timme" @@ -2091,7 +2098,7 @@ msgstr "Max: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentation" @@ -2114,14 +2121,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Fel" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-fråga" @@ -2139,210 +2146,210 @@ msgstr "SQL-fråga" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Lyckades inte ansluta till SQL validerare!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Skicka fråga" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Uppdatera" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Hoppa över SQL-validering" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validera SQL-kod" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Redigera denna fråga" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Sön" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Saknade parametrar:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Starta" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Föregående" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Nästa" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Struktur" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Lägg till" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Bläddra" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operationer" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Välj katalog att ladda upp till från web-server listningen %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Töm" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Utför" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Skriv ut" @@ -2360,149 +2367,149 @@ msgstr "" msgid "Font size" msgstr "Teckenstorlek" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Stigande" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Fallande" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortera" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriterier" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Lägg till/Ta bort villkorsrader" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Lägg till/Ta bort kolumner" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Uppdatera fråga" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Använd tabeller" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Eller" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Och" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Infoga" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Ta bort" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ändra" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "minst ett av orden" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "alla ord" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "den exakta frasen" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "som reguljärt uttryck" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Sök resultat för \"%s\"%s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s träff" msgstr[1] "Totalt: %s träffar" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s träff i %2$s" msgstr[1] "%1$s träffar i %2$s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Ta bort resultat som matchar %s tabellen?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Radera" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Sök i databas" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Hitta:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Ord separeras av ett mellanslag (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Inuti tabeller:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Inuti kolumnen:" @@ -2547,8 +2554,8 @@ msgstr "Rubriker var %s rad" msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2625,7 +2632,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Döda" @@ -2644,8 +2651,8 @@ msgstr "i fråga" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: libraries/DisplayResults.class.php:4939 @@ -2656,7 +2663,7 @@ msgstr "Visar rader" msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" @@ -2667,7 +2674,7 @@ msgstr "Frågan tog %01.4f sek" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Med markerade:" @@ -2677,8 +2684,8 @@ msgstr "Med markerade:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Markera alla" @@ -2716,16 +2723,16 @@ msgstr "Länken hittades inte" msgid "Too many error messages, some are not displayed." msgstr "För många felmeddelanden, en del kommer inte visas." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Filen var inte en uppladdad fil." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2733,37 +2740,37 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen blev endast delvis uppladdad." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Fel när du flyttar uppladdad fil." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Kan inte läsa (flyttad) uppladdad fil." @@ -2772,66 +2779,66 @@ msgstr "Kan inte läsa (flyttad) uppladdad fil." msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Javascript måste vara aktiverat efter detta" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Inga index är definierade!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Index" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Kollationering" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Kommentar" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Den primära nyckeln har tagits bort" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Index %s har tagits bort" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2842,12 +2849,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Databaserna" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -2915,18 +2922,18 @@ msgstr "Användarna" msgid "Synchronize" msgstr "Synkronisera" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binär logg" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikering" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Variabler" @@ -3062,8 +3069,8 @@ msgstr "" "efter att du uppdaterar denna sida. Kontrollera om tabellens struktur har " "förändrats." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funktion" @@ -3073,11 +3080,11 @@ msgstr "Funktion" msgid "Operator" msgstr "Aktör" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Värde" @@ -3085,61 +3092,61 @@ msgstr "Värde" msgid "Table Search" msgstr "Tabellsök" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Redigera / Infoga" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Markera kolumner (minst en):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Anntal rader per sida" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Visningsordning:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Använd denna kolumn för att markera varje punkt" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Maximalt antal rader att visa" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "Ytterligare sökkriterier" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Utför en \"Query By Example\" (jokertecken: \"%\") för två olika kolumner" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Bläddra / Redigera punkter" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Hur du använder" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Återställ zoom" @@ -3225,16 +3232,16 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Ett litet flyttal. Tillåtna värden är: 3.402823466E+38 till-1.175494351E-38, " "0, och 1.175494351E-38 till 3.402823466E+38" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" "Ett dubbel-precision flyttal. Tillåtna värden är: 1.7976931348623157E+308 " @@ -3524,7 +3531,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tabeller" @@ -3538,12 +3545,12 @@ msgstr "Tabeller" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Outnyttjat" @@ -3649,7 +3656,7 @@ msgstr "Öppen" msgid "Closed" msgstr "Stängd" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3789,22 +3796,22 @@ msgstr "" "Denna inställning är inaktiverad, den kommer inte tillämpas på din " "konfiguration" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Ange värde: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Återställ standardvärde" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Tillåt användare att anpassa detta värde" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Återställ" @@ -4095,7 +4102,7 @@ msgstr "Filens teckenuppsättning" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4204,7 +4211,7 @@ msgstr "Märk nyckel" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-typ" @@ -4240,7 +4247,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Använd citat-tecken runt tabell- och fältnamn" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL kompatibilitetläge" @@ -5810,10 +5817,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "Kräver att SQL Validator är aktiverad" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6079,7 +6086,7 @@ msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration." msgid "possible deep recursion attack" msgstr "möjlig djupgående rekursiv attack" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6087,46 +6094,54 @@ msgstr "" "Servern svarar inte (eller den lokala serverns socket är inte korrekt " "konfigurerad)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Servern svarar inte." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Detaljer..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Byt lösenord" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Inget lösenord" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Skriv igen" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Hashning av lösenord" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "Kompatibel med MySQL 4.0" @@ -6256,8 +6271,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -6336,7 +6351,7 @@ msgstr "inlaggd %1$s av %2$s" msgid "authored on %1$s by %2$s" msgstr "Skriven den %1$s av %2$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6346,33 +6361,33 @@ msgstr "" "eller så är detta än känd bugg i webkit-baserade webbläsare (Safari, Google " "Chrome, Arora etc.)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s av %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "Ladda upp din importfil..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/sek." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Ungefär %MIN min. %SEC sek. återstår." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "mkring %SEC sek. återstår." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Filen bearbetas, vänligen vänta." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6380,30 +6395,30 @@ msgstr "" "Vänligen vänta, filen laddas upp. Detaljer om denna uppladdning är inte " "tillgängliga." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Importera till den aktuella servern" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "Importera till databasen \"%s \"" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "Importera till tabellen \"%s\"" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "Fil att importera:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Filen kan vara komprimerad (%s) eller okomprimerad." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6490,71 +6505,71 @@ msgstr "" "Storleken på minnesbufferten som InnoDB använder för cache av data och index " "till sina tabeller." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB-status" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Buffertanvändning" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sidor" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Fria sidor" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Orena sidor" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Sidor innehållande data" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Sidor att rensa" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Upptagna sidor" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Låsta sidor" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Buffert Pool aktivitet" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Läsförfrågningar" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Skrivförfrågningar" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Läsmissar" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Skrivväntanden" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Läsmissar i %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Skrivväntanden i %" @@ -6784,11 +6799,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" -"%s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" +"s." #: libraries/engines/pbxt.lib.php:135 msgid "Related Links" @@ -6802,127 +6817,127 @@ msgstr "PrimeBase XT Blogg av Paul McCullagh" msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS visualisering." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Följande strukturer har antingen skapats eller ändrats. Du kan:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Visa en strukturs innehåll genom att klicka på namnet" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ" "\" länk" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Redigera strukturen genom att följa \"Structure\" länken" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Gå till databas: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "Redigera inställningar för %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Gå till tabell: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "Struktur för %s" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Gå till vy: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Dölj" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "På grund av sin längd,
är denna kolumn kanske inte redigerbar" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Visa insert fråga" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" @@ -6966,7 +6981,7 @@ msgstr "Lägg till tabellprefix" msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" @@ -7253,7 +7268,7 @@ msgstr "Tabellalternativ" msgid "Rename table to" msgstr "Döp om tabellen till" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Lagringsmotor" @@ -7367,11 +7382,11 @@ msgstr "Välkommen till %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " -"%1$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" +"$suppsättningsskript%2$s för att skapa denna." #: libraries/plugins/auth/AuthenticationConfig.class.php:121 msgid "" @@ -7446,21 +7461,21 @@ msgstr "Felaktigt användarnamn/lösenord. Åtkomst nekad." msgid "Can not find signon authentication script:" msgstr "Kan inte hitta scriptet för verifiering av inloggning:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Filen %s innehåller inget nyckelid" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Hårdvaruautentisering misslyckades" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Ogiltig autentiseringsnyckel" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autentisering pågår..." @@ -7597,20 +7612,21 @@ msgstr "Visa MIME-typer" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Värd" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Skapad" @@ -7864,7 +7880,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "Ogiltigt antal fält i CSV indata på rad %d." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tabellnamn" @@ -8112,7 +8128,7 @@ msgstr "Skapande av PDF" msgid "Displaying Column Comments" msgstr "Visning av kolumnkommentarer" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Webbläsaromvandling" @@ -8185,7 +8201,7 @@ msgstr "Avmarkera alla" msgid "Slave configuration" msgstr "Slavkonfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Ändra eller konfigurera om master-server" @@ -8198,8 +8214,8 @@ msgstr "" "inte, lägg till följande rad i [mysqld]-sektionen:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8219,15 +8235,15 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Variabel" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8235,17 +8251,17 @@ msgstr "" "Endast slavar startade med - report-host = host_name alternativet syns i " "denna lista." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Lägg till användare för slav replikering" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Vilken användare som helst" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8254,27 +8270,27 @@ msgstr "Vilken användare som helst" msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8283,7 +8299,7 @@ msgstr "" "När värdtabellen används ignoreras detta fält och värden lagrade i " "värdtabllen används istället." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Generera lösenord" @@ -8343,7 +8359,7 @@ msgstr "Detaljer" msgid "Event name" msgstr "Händelsenamn" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Händelsetyp" @@ -8687,7 +8703,7 @@ msgstr "Ingen händelse med namnet %1$s hittades i databasen %2$s" msgid "There are no events to display." msgstr "Det finns inga händelser att visa." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8696,7 +8712,7 @@ msgstr "Det finns inga händelser att visa." msgid "The %s table doesn't exist!" msgstr "Tabellen %s existerar inte!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8742,91 +8758,91 @@ msgstr "Attribut" msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Skapa ny sida" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Sidnamn" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Automatisk layout baserad på" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Interna relationer" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FRÄMMANDE NYCKEL" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Välj en sida att redigera" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Välj sida" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Välj tabeller" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Kolumn-namn" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Visa relationsschema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Välj Exportera Relationell Typ" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Visa rutnät" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Visa färg" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Visa tabellers dimensioner" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Visa alla tabeller med samma bredd" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Datalexikon" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Visa endast nycklar" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Landskap" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Porträtt" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Orientering" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Pappersstorlek" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8834,7 +8850,7 @@ msgstr "" "Nuvarande sida har referenser till tabeller som inte längre existerar. Vill " "du ta bort dessa referenser?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Visa/dölj skisstavla" @@ -9135,7 +9151,7 @@ msgstr "Användare som har tillgång till "%s"" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Användare" @@ -9274,8 +9290,8 @@ msgstr "Användare översikt" 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 behörigheter direkt från MySQL's " "behörighetstabeller. Innehållet i dessa tabeller kan skilja sig från de " @@ -9336,11 +9352,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -9436,7 +9452,7 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" @@ -9449,12 +9465,12 @@ msgstr "Spårning är aktiv." msgid "Tracking is not active." msgstr "Spårning är inaktiv." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" @@ -9482,14 +9498,14 @@ msgid "Column %s has been dropped" msgstr "Kolumnen %s har tagits bort" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Primär" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Index" @@ -9499,7 +9515,7 @@ msgid "Spatial" msgstr "Spatial" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Fulltext" @@ -9523,7 +9539,7 @@ msgstr "Visa relationer" msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." @@ -9531,7 +9547,7 @@ msgstr "Du måste lägga till åtminstone en kolumn." msgid "Add column" msgstr "Lägg till kolumn" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Lägg till %s fält" @@ -9554,15 +9570,15 @@ msgstr "Efter %s" msgid "Create an index on  %s columns" msgstr "Skapa ett index för  %s kolumn(er)" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Radstatistik" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statisk" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dynamisk" @@ -9570,15 +9586,15 @@ msgstr "dynamisk" msgid "partitioned" msgstr "partitionerad" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Radlängd" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Radstorlek" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Nästa AutoIndex" @@ -9624,15 +9640,15 @@ msgstr "Lägg till SPATIAL index" msgid "Add FULLTEXT index" msgstr "Lägg till FULLTEXT index" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Information" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Visa använt utrymme" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektiv" @@ -9665,7 +9681,7 @@ msgstr "" msgid "Move column" msgstr "Flytta kolumn" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9674,11 +9690,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:145 msgid "Transformation options" msgstr "Omvandlingsparametrar" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9690,33 +9706,33 @@ msgstr "" "enkelcitat (\"'\") i värdena, skriv ett bakåtstreck före tecknet (t.ex. '\\" "\\xyz' eller 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM eller SET data för långt?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Få mer redigerings utrymme" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Inget" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Som definierat:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "först" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "efter %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Partitionsdefinition" @@ -9865,11 +9881,10 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"PHP-parametern " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a är lägre än cookie-giltighet " -"konfigurerad i phpMyAdmin. på grund av detta, kommer din inloggning upphöra " -"tidigare än vad som ärkonfigurerat i phpMyAdmin." +"PHP-parametern [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a är lägre än cookie-" +"giltighet konfigurerad i phpMyAdmin. på grund av detta, kommer din " +"inloggning upphöra tidigare än vad som ärkonfigurerat i phpMyAdmin." #: main.php:403 msgid "" @@ -9909,8 +9924,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " -"%s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" +"s. Detta kan orsaka oförutsägbara beteenden." #: main.php:491 #, php-format @@ -9919,7 +9934,7 @@ msgid "" "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Inga databaser" @@ -10197,29 +10212,29 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Filer" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Loggnamn" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Position" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Ursprunglig position" @@ -10227,31 +10242,31 @@ msgstr "Ursprunglig position" msgid "Character Sets and Collations" msgstr "Teckenuppsättningar och kollationeringar" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databas har framgångsrikt tagits bort." msgstr[1] "%1$d databaser har framgångsrikt tagits bort." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Databas-statistik" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master replikering" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slav replikering" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Aktivera Statistik" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10321,40 +10336,40 @@ msgstr "Privilegierna har laddats om." msgid "Unknown error" msgstr "Okänt fel" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Kan inte ansluta till master %s." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Det går inte att läsa master logg läge. Eventuella privilegie problem på " "master." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Kan inte ändra master" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Huvudservern har ändrats till %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Visa master-status" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Visa anslutna slavar" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10363,11 +10378,11 @@ msgstr "" "Denna server är inte konfigurerad som master i en replikering process. Vill " "du konfigurera den?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Master-konfiguration" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10381,19 +10396,19 @@ msgstr "" "välja att ignorera alla databaser som standard och endast tillåta att vissa " "databaser speglas. Välj inställning:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Replikera alla databaser, Ignorera:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Ignorera alla databaser, Replikera:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Välj databaser:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10401,7 +10416,7 @@ msgstr "" "Nu, lägg till följande rader i slutet av [mysqld]-sektionen i din my.cnf och " "starta om MySQL-servern efteråt." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -10411,80 +10426,80 @@ msgstr "" "meddelande som informerar dig, att denna server är konfigurerad som " "master" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slav SQL tråden exekveras inte!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slav IO tråden exekveras inte!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servern är konfigurerad som slav i en replikering process. Vill du:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Se slavtabell status" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Synkronisera databaser med master" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Kontroll slav:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Full start" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Full stopp" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Återställ slav" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Starta endast SQL tråd" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Stoppa endast SQL tråd" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Starta endast IO tråd" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Stoppa endast IO tråd" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Felhantering:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hoppa över fel kan leda till osynkroniserad master och slav!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Hoppa över nuvarande fel" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Hoppa över nästa" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "fel." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10493,132 +10508,131 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Hanterare" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Frågecache" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Trådar" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Temporära data" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Fördröjda infogningar" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Nyckelcache" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Kopplingar" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortering" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Transaktionssamordnare" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Flush (stäng) alla tabeller" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Visa öppna tabeller" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Visa slav-status" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Rensa frågecache" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Körningsinformation" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Alla statusvariabler" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "Övervaka" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Handledare" -#: server_status.php:822 server_status.php:848 -#| msgid "Number of rows:" +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Antalet datapunkter: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Uppdateringsfrekvens: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Filter" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "Innehåller ordet:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Visa endast varnings värden" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Filtrera efter kategori ..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Visa oformaterade värden" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "Liknande länkar:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Kör analysator" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Instruktioner" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10626,7 +10640,7 @@ msgstr "" "Advisor systemet kan ge rekommendationer på server variabler genom att " "analysera server status variablerna." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10635,7 +10649,7 @@ msgstr "" "Observera att detta system ger rekommendationer baserat på enkla beräkningar " "och genom tumregler som inte nödvändigtvis gäller för ditt system." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10645,7 +10659,7 @@ msgstr "" "ändra (genom att läsa dokumentation) och hur du kan ångra ändringen. Fel " "inställning kan ha en mycket negativ inverkan på prestandan." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10656,31 +10670,31 @@ msgstr "" "inte fanns någon tydligt mätbar förbättring." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Frågor sedan start: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Uppgifterna" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Denna MySQL-servern har varit igång i %1$s. Den startade den %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10688,17 +10702,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10706,11 +10720,11 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10718,35 +10732,35 @@ msgstr "" "På en upptagen server kan byte-räknare spåra ur, så statistiken som " "rapporteras av MySQL-servern kan vara fel." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Mottagna" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Skickade" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Kommando" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10754,11 +10768,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Antalet misslyckade försök att ansluta till MySQL-servern." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10768,16 +10782,16 @@ msgstr "" "överskred värdet binlog_cache_size och använde en temporär fil för att lagra " "satser från transaktionen." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Antalet transaktioner som använde den temporära binära loggcachen." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Antalet anslutningsförsök (lyckade eller inte) till MySQL-servern." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10789,11 +10803,11 @@ msgstr "" "kanske öka värdet tmp_table_size för att åstadkomma att temporära tabeller " "lagras i minne istället för på disk." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10801,7 +10815,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10809,7 +10823,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10817,23 +10831,23 @@ msgstr "" "Antalet INSERT DELAYED-hanteringstrådar i bruk. Varje tabell på vilken man " "använder INSERT DELAYED får sin egen tråd." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Antalet gånger en rad togs bort från en tabell." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10843,7 +10857,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10853,7 +10867,7 @@ msgstr "" "tyder det på att servern gör många helindex-avsökningar; t.ex. SELECT col1 " "FROM foo, under förutsättning att col1 är indexerad." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10862,7 +10876,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10872,7 +10886,7 @@ msgstr "" "värde ökas om du frågar en indexkolumn med en urvalsbegränsning eller om du " "gör en indexavsökning." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10880,7 +10894,7 @@ msgstr "" "Antalet efterfrågningar att läsa den föregående raden i nyckelordning. Denna " "läsmetod används huvudsakligen för att optimera ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10892,7 +10906,7 @@ msgstr "" "Du har förmodligen många frågor som kräver att MySQL avsöker hela tabeller " "eller du har föreningar som inte använder nycklar på rätt sätt." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10904,35 +10918,35 @@ msgstr "" "dina tabeller inte är riktigt indexerade eller att dina frågor inte är " "skrivna för att dra nytta av de index du har." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Antalet efterfrågningar att uppdatera en rad i en tabell." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Antalet efterfrågningar att lägga till en rad i en tabell." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Antalet buffert-sidor som har efterfrågats om att bli rensade." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10942,7 +10956,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10954,11 +10968,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10966,7 +10980,7 @@ msgstr "" "Antalet \"slumpmässiga\" läsningar i förväg som InnoDB initierat. Detta sker " "när en fråga ska avsöka en stor del av en tabell men i slumpmässig ordning." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10974,11 +10988,11 @@ msgstr "" "Antalet sekventiella läsningar i förväg som InnoDB initierat. Detta sker när " "InnoDB gör en sekventiell avsökning av en hel tabell." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10986,7 +11000,7 @@ msgstr "" "Antalet logiska läsningar som InnoDB inte kunde uppfylla från buffert och " "fick göra en enkelsidig läsning." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11000,51 +11014,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "Antalet sidor som har skrivits för doublewrite transaktioner." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11052,35 +11066,35 @@ msgstr "" "Antalet väntanden pga loggbufferten var för liten och vi behövde vänta på " "att den skulle rensas innan kunde fortsätta." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11088,51 +11102,51 @@ msgstr "" "Den inkompilerade InnoDB-sidstorleken (standard 16kB). Många värden räknas i " "sidor; sidstorleken tillåter dem att enkelt omvandlas till bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Antalet radlås som för närvarande väntas på." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Genomsnittlig tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid spenderad på att skaffa radlås, i millisekunder." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maximal tid för att skaffa ett radlås, i millisekunder." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Antalet gånger ett radlås behövde väntas på." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11140,7 +11154,7 @@ msgstr "" "Antalet nyckelblock i nyckelcachen som har ändrats men inte ännu överförts " "till disk. Det brukade vara känt som Not_flushed_key_blocks." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11148,7 +11162,7 @@ msgstr "" "Antalet oanvända block i nyckelcachen. Du kan använda detta värde för att " "avgöra hur stor del av nyckelcachen som används." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11157,15 +11171,15 @@ msgstr "" "Antalet använda block i nyckelcachen. Detta värde är ett högvattenmärke som " "indikerar maximala antalet block som någonsin använts vid ett tillfälle." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Andel av använd nyckelcache (beräknat värde)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Antalet efterfrågningar att läsa ett nyckelblock från cachen." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11175,7 +11189,7 @@ msgstr "" "är stort, då är förmodligen ditt värde key_buffer_size för litet. Cachens " "missfrekvens kan beräknas som Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11183,20 +11197,20 @@ msgstr "" "Misslyckad nyckelcache beräknas som andelen fysiska läsningar jämfört med " "läsbegaäran (beräknat värde)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Antalet efterfrågningar att skriva ett nyckelblock till cachen." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "Andel fysiska skrivningar jämfört med läsbegäran (beräknat värde)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11207,7 +11221,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11215,11 +11229,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Antalet rader som väntar på att skrivas i INSERT DELAYED-köer." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11227,19 +11241,19 @@ msgstr "" "Antalet tabeller som har öppnats. Om antalet öppnade tabeller är stort är " "förmodligen ditt tabellcache-värde för litet." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antalet strömmar som är öppna (används huvudsakligen för loggning)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11248,19 +11262,19 @@ msgstr "" "Antalet fria minnesblock i frågecache. Högt antal kan tyda på fragmentering, " "vilket kan lösas genom att köra ett FLUSH QUERY CACHEN kommando." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11272,7 +11286,7 @@ msgstr "" "storleken på frågecachen. Frågecachen använder strategin minst nyligen " "använd (LRU) för att bestämma vilka frågor som ska tas bort från cachen." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11280,19 +11294,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11300,11 +11314,11 @@ msgstr "" "Antalet kopplingar som inte använder index. Om detta värde inte är 0, bör du " "noggrant kontrollera index för dina tabeller." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Antalet kopplingar som använde en urvalssökning på en referenstabell." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11313,7 +11327,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11321,17 +11335,17 @@ msgstr "" "Antalet kopplingar som använde urval på den första tabellen. (Det är normalt " "inte kritiskt även om detta är stort.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Antalet kopplingar som gjorde en fullständig genomsökning av den första " "tabellen." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Antalet temporära tabeller för närvarande öppna av slavens SQL-tråd." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11339,25 +11353,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Denna är ON ifall denna server är en slav som är förbunden till en " "huvudserver." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "Antalet frågor som har tagit mer än slow_launch_time sekunder att skapa." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Antalet frågor som har tagit mer än long_query_time sekunder." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11367,23 +11381,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Antalet sorteringar som har gjorts genom avsökning av tabellen." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Antalet gånger som ett tabellås förvärvades omedelbart." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11395,7 +11409,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11405,11 +11419,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11421,47 +11435,47 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "Trådad cache träffrekvens (beräknat värde)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "Starta Monitor" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Instruktioner/Setup" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Klar ändra/editera diagram" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Lägg till diagram" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Ordna/editera diagram" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Visa kolumner" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Diagram arrangemang" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11469,15 +11483,15 @@ msgstr "" "Arrangemanget av diagrammen lagras lokalt i webbläsarens. Du kanske vill " "exportera den om du har en komplicerad inställning." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Återställ till standardinställningen" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "Övervaka instruktioner" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11491,7 +11505,7 @@ msgstr "" "Observera att general_log producerar mycket data och ökar lasten på servern " "med upp till 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11503,11 +11517,11 @@ msgstr "" "stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda " "serverfunktionernas diagramfunktioner." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "Använda monitorn:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11518,7 +11532,7 @@ msgstr "" "\"Inställningar\", eller ta bort diagram med cog-ikonen vid respektive " "diagram." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11530,11 +11544,11 @@ msgstr "" "bekräftat kommer detta ladda en tabell över grupperade frågor, Där kan du " "klicka på de förekommande SELECT-satser för att ytterligare analysera dessa." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Vänligen notera:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11547,86 +11561,86 @@ msgstr "" "samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " "inte behövs längre." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Förinställt diagram" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Statusvariabler" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Välj serie:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Vanligtvis övervakade" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "eller skriv variabelnamn:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Visa som skillnadsvärde" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Tillämpa en dividend" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Lägg till enhet till datavärdena" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Lägg till denna serie" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Rensa serie" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Serie i diagram:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Logga statistik" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Välj tidsintervall:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Ta bort variabeldata i INSERT kommandon för bättre gruppering" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "Välj från vilken logg du vill att statistiken ska genereras från." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Resultaten grupperas efter frågetext." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Frågeanalyserare" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11744,19 +11758,19 @@ msgstr "" "Databasen kommer synkroniseras med källdatabasen. Källdatabasen kommer vara " "oförändrad." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Inställning av variabeln misslyckades" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Servervariabler och inställningar" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessionsvärde" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Globalt värde" @@ -12031,8 +12045,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att det är nödvändigt, använd extra skyddsinställningar - " -"%shost autentisering%s inställningar och %strusted proxies listan%s. Dock " +"Om du känner att det är nödvändigt, använd extra skyddsinställningar - %" +"shost autentisering%s inställningar och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till." @@ -12093,42 +12107,42 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." msgid "Wrong data" msgstr "Felaktigt data" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Genererad av" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etikett" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Kolumnerna har flyttats framgångsrikt." @@ -12259,18 +12273,18 @@ msgstr "Redigera index" msgid "Index name:" msgstr "Indexnamn:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indextyp:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Lägg till %s kolumn(er) till index" @@ -12433,38 +12447,38 @@ msgstr "Exportera som %s" msgid "Show versions" msgstr "Visa versioner" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "Avaktivera spårning för %s" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Deaktivera nu" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "Aktivera spårning för %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Aktivera nu" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "Skapa version %1$s av %2$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Spåra dessa datadefinitioners kommandon:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Spåra dessa datahanterings kommandon:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Skapa version" @@ -12840,8 +12854,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Det nuvarande förhållandet mellan ledigt frågecacheminne den totala fråge " "cache-storlek är %s%%. Det bör vara över 80%%" @@ -12994,8 +13008,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "%s%% av alla sorter orsakar tillfälliga tabeller, detta värde bör vara lägre " "än 10%%." @@ -13697,12 +13711,12 @@ msgstr "" "InnoDB buffer poolen har stor inverkan på prestandan för InnoDB tabeller. " "Tilldela allt ditt återstående minne till denna buffert. För databasservrar " "som uteslutande använder InnoDB som lagrings motor och har inga andra " -"tjänster (t.ex. en webbserver) som kör, kan du ställa in detta så hög som " -"80%% av ditt tillgängliga minne. Om så inte är fallet, måste du noggrant " -"bedöma minnesåtgången för dina andra tjänster och icke-InnoDB-tabeller och " -"ställa in denna variabel därefter. Om den är för hög, kommer ditt system " -"börja swappa, vilket minskar prestandan avsevärt. se även denna artikel" #: libraries/advisory_rules.txt:448 diff --git a/po/ta.po b/po/ta.po index c335393d99..ff201ef011 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:32+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "பக்க எண்" @@ -42,36 +42,36 @@ msgstr "" "மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர " "மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "தேடு" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -79,28 +79,28 @@ msgstr "தேடு" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "செல்" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "முக்கியபெயர்" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "விளக்கம்" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "இந்த மதிப்பை பயன்படுத்துக" @@ -120,18 +120,18 @@ msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "நிரல்" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "நிரல்" msgid "Type" msgstr "வகை" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "வகை" msgid "Null" msgstr "வெற்று" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "வெற்று" msgid "Default" msgstr "முன்னிருப்பு" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "முன்னிருப்பு" msgid "Links to" msgstr "இணைப்பு" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "இணைப்பு" msgid "Comments" msgstr "கருத்துரைகள்" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "கருத்துரைகள்" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "இல்லை" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "இல்லை" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ஆம்" @@ -275,35 +275,35 @@ msgid "View dump (schema) of database" msgstr "தரவுத்தளத்தின் திட்ட வடிவத்தைப் பார்" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "அனைத்தையும் தெரிவுசெய்" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "அனைத்து தெரிவுகளையும் நீக்கு" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s தரவுத்தளமானது %s இற்கு பிரதி செய்யப்பட்டது" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -312,12 +312,12 @@ msgstr "" "PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்க செய்யப்பட்டுள்ளது. ஏன் எனக் கண்டுபிடிக்க %shere%s " "கிளிக் செய்யவும்" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "அட்டவணை" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "வரிசைகள்" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "அளவு" @@ -347,7 +347,7 @@ msgstr "பயன்பாட்டில்" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "உருவாக்கம்" @@ -355,7 +355,7 @@ msgstr "உருவாக்கம்" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" @@ -363,7 +363,7 @@ msgstr "இறுதி இற்றைப்படுத்தல்" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "கடைசி சோதனை" @@ -378,7 +378,7 @@ msgstr[1] "%s அட்டவணைகள்" msgid "You have to choose at least one column to display" msgstr "காட்சிப்படுத்த நீங்கள் குறைந்தபட்சம் ஒரு நிரலை தேர்ந்தெடுக்க வேண்டும்" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s காட்சி கட்டுனர் இற்கு %s மாற்றவும்" @@ -410,9 +410,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "தரவுத்தளம்" @@ -430,66 +430,66 @@ msgstr "புதுப்பிக்கப்பட்டது" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "தகுநிலை" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "செயல்" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "காண்பி" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "அழி" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "செயற்படு" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "செயற்பாடற்ற" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "பதிப்புக்கள்" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "அட்டவணைத் தடம்" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "தரவுத்தளப்பதிகை" @@ -507,12 +507,12 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -523,7 +523,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -534,165 +534,165 @@ msgstr "" msgid "Invalid export type" msgstr "சுட்டு வகை" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "புள்ளி" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, fuzzy, php-format #| msgid "Point" msgid "Point %d" msgstr "புள்ளி" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "ஒரு புள்ளியை சேர்" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "உள்ப்புற வளையம்" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "கட்டுப்பாடுகளை சேர்க்க" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "உள்ப்புற வளையத்தை சேர்" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "பல்கோணி" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "ஒரு பல்கோணியை சேர்" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "புதிய பயனாளரை சேர்க்க" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "வெளியீடு" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -706,7 +706,7 @@ msgstr "திரும்பி" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -715,7 +715,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -759,7 +759,7 @@ msgstr "சுட்டுகள்" msgid "Edit Index" msgstr "தொகுப்பு பார்வை" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -810,24 +810,24 @@ msgstr "மூடு" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "தொகு" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "நேரடி போக்குவரத்து வரைபடம்" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "நேரடி இணை./செயலாக்க வரைபடம்" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "நேரடி வினவல் வரைபடம்" @@ -837,24 +837,24 @@ msgstr "நிலையான தரவு" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "மொத்தம்" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "ஏனையது" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -874,7 +874,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "செயலாக்கங்கள்" @@ -892,7 +892,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "வினவல் புள்ளிவிவரவியல்" @@ -934,13 +934,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -992,32 +992,32 @@ msgstr "துண்டுகள் அனுப்ப" msgid "Bytes received" msgstr "துண்டுகள் ஏற்றுக்கொள்ளப்பட்டது" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "இணைப்புகள்" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1033,11 +1033,11 @@ msgstr "%s அட்டவணை" msgid "Questions" msgstr "வினாக்கள்" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "அமைப்புகள்" @@ -1058,12 +1058,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "எதுவுமில்லை" @@ -1156,7 +1156,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" @@ -1245,7 +1245,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1349,8 +1349,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" @@ -1571,12 +1571,12 @@ msgstr "வினவல் நிறைவேற்றுகை நேரம்" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "சேமி" @@ -1636,8 +1636,8 @@ msgstr "தேடல் முடிவுகளை மறை" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "புறக்கணி" @@ -1736,7 +1736,7 @@ msgstr "" msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "இயற்று" @@ -1839,27 +1839,27 @@ msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1867,37 +1867,37 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "மார்கழி" @@ -1946,32 +1946,32 @@ msgid "Sun" msgstr "ஞாயி" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "சனி" @@ -2086,16 +2086,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "ஒரு வினாடிக்கு" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "ஒரு நிமிடத்திற்கு " -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "ஒரு மணி நேரத்திற்கு " @@ -2112,7 +2112,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "ஆவணச்சான்று" @@ -2135,14 +2135,14 @@ msgid "en" msgstr "ஆங்" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "வலு" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL வினவல்" @@ -2160,210 +2160,210 @@ msgstr "SQL வினவல்" msgid "MySQL said: " msgstr "MySQL சொன்னது:" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "வினவலை சமர்ப்பி" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "புதுப்பி" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி " -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "ஞாயிறு" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "ஆரம்பம்" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "முந்தைய" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "அடுத்து" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "முடிவு" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "கட்டமைப்பு" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "செருகு" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "உலாவு" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "உனது கணினியை உலாவு" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "வெறுமை" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "நிறைவேற்று" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "அச்சிடு" @@ -2380,105 +2380,105 @@ msgstr "" msgid "Font size" msgstr "எழுத்துரு அளவு" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ஏறுவரிசை" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "இறங்குவரிசை" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "வரிசைப்படுத்து" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "தேர்வளவை" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "விதி நிரைகளை சேர்க்க/ நீக்க" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "வினவலை புதுப்பி" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "அட்டவணைகளை பயன்படுத்துக" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "அல்லது" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "மற்றும்" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "துணைநிரல்கள்" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "அழி" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "மாற்று" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "தரவுத்தளம் மீது %s%s
\" %s:" msgstr "\"%s\" %s இற்கான தேடல் முடிவுகள்:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "மொத்தம்: %s பொருத்தம்" msgstr[1] "மொத்த: %s பொருத்தங்கள்" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2487,44 +2487,44 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s அட்டவணையில் பொருந்தியவை %s" msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "அழி" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "தரவுத்தளத்தில் தேடு" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "தேட வார்த்தைகள் அல்லது மதிப்புகள் (குழுக்குறி: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "கண்டறி:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "சொற்கள் ஓர் இடைவெளி எழுத்தால் (\" \") பிரிக்கப்பட்டிருக்கும்." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "அட்டவணைகளில்:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "நிரல் உள்ளே:" @@ -2573,8 +2573,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2651,7 +2651,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2668,8 +2668,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2680,7 +2680,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2691,7 +2691,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" @@ -2701,8 +2701,8 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "அனைத்தையும் தெரி" @@ -2742,51 +2742,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "ஒரு தற்காலிய உறையை காணவில்லை" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2795,66 +2795,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "சுட்டுகள்" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "அடுக்கு" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "கருத்துரை" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2863,12 +2863,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "தரவுத்தளங்கள்" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "சேவையன்" @@ -2938,18 +2938,18 @@ msgstr "பாவனையளவு" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "படியெடுத்தல்" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3079,8 +3079,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3090,11 +3090,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3104,60 +3104,60 @@ msgstr "" msgid "Table Search" msgstr "தேடு" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "எப்படி பயன்படுத்துவது" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3230,14 +3230,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3488,7 +3488,7 @@ msgstr "பகிரப்பட்டது" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "அட்டவணைகள்" @@ -3502,12 +3502,12 @@ msgstr "அட்டவணைகள்" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "தரவு" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3609,7 +3609,7 @@ msgstr "திற" msgid "Closed" msgstr "மூடப்பட்டது" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3747,22 +3747,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -4031,7 +4031,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4140,7 +4140,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4176,7 +4176,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5622,10 +5622,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5877,52 +5877,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6052,8 +6060,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6129,69 +6137,69 @@ msgstr "பதிப்பை உருவாக்கு" msgid "authored on %1$s by %2$s" msgstr "பதிப்பை உருவாக்கு" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6267,71 +6275,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6522,8 +6530,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6538,124 +6546,124 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "தரவுத்தளத்தை பிரதிசெய்" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6703,7 +6711,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6990,7 +6998,7 @@ msgstr "அட்டவணை தெரிவுகள்" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7104,8 +7112,8 @@ msgstr "வரவேற்கிறது %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 " "பயன்படுத்தலாம்" @@ -7180,21 +7188,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7333,20 +7341,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7579,7 +7588,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7781,7 +7790,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7847,7 +7856,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7858,8 +7867,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7879,31 +7888,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7912,34 +7921,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8000,7 +8009,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8356,7 +8365,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8365,7 +8374,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8411,99 +8420,99 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "தரவு அகராதி" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Action" msgid "Orientation" msgstr "செயல்" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8795,7 +8804,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8930,8 +8939,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8988,11 +8997,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9074,7 +9083,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s அட்டவணை வெறுமை செய்யப்பட்டது" @@ -9087,12 +9096,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -9120,14 +9129,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -9137,7 +9146,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9163,7 +9172,7 @@ msgstr "தொடர்பு பார்வை" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -9175,7 +9184,7 @@ msgstr "நீங்கள் புதிய பயனாளரை சேர் msgid "Add column" msgstr "%s களத்தை சேர்க்க" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9199,15 +9208,15 @@ msgstr "%s பின்" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "மாறா" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "இறக்காற்றல்" @@ -9215,15 +9224,15 @@ msgstr "இறக்காற்றல்" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "நிரல் நீளம்" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "நிரல் அளவு" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9271,15 +9280,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "பயனுடைய" @@ -9308,18 +9317,18 @@ msgstr "" msgid "Move column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9327,34 +9336,34 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s பின்" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9538,7 +9547,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9815,29 +9824,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9845,7 +9854,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9853,24 +9862,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" msgstr[1] "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9943,49 +9952,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9994,255 +10003,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "வடிகட்டிகள்" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10250,115 +10259,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10366,78 +10375,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10445,7 +10454,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10453,42 +10462,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10496,33 +10505,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10531,242 +10540,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10774,99 +10783,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10874,18 +10883,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10893,65 +10902,65 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s களத்தை சேர்க்க" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10960,7 +10969,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10968,18 +10977,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10987,11 +10996,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10999,88 +11008,88 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11196,19 +11205,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "மாறி அமைப்பு தோல்வியடைந்தது" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "சேவையக மாறிகள் மற்றும் அமைப்புக்கள்" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "அமர்வு மதிப்பு" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "முழுதளாவிய மதிப்பு" @@ -11494,42 +11503,42 @@ msgstr "" msgid "Wrong data" msgstr "தரவு இல்லை" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "சிட்டை" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -11678,16 +11687,16 @@ msgstr "தொகுப்பு பார்வை" msgid "Index name:" msgstr "சுட்டுப் பெயர்" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "சுட்டு வகை" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11848,40 +11857,40 @@ msgstr "" msgid "Show versions" msgstr "பதிப்புகளை காட்டு" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "பதிப்பை உருவாக்கு" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "பதிப்பை உருவாக்கு" @@ -12239,8 +12248,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12367,8 +12376,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/te.po b/po/te.po index 1e39e9fd56..351664319c 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "పుట సంఖ్య:" @@ -40,36 +40,36 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "శోధించు" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "శోధించు" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "వెళ్ళు" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "కీలకపదం" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "వివరణ" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" @@ -118,19 +118,19 @@ msgstr "" msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -138,18 +138,18 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "వరుస" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "వరుస" msgid "Type" msgstr "రకం" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "రకం" msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "" msgid "Default" msgstr "అప్రమేయం" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "అప్రమేయం" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "" msgid "Comments" msgstr "వ్యాఖ్యలు" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "వ్యాఖ్యలు" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "కాదు" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "కాదు" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "అవును" @@ -274,49 +274,49 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "అన్నీ ఎంచుకో" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "అన్నీ ఎంచుకోవద్దు" # మొదటి అనువాదము -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" # మొదటి అనువాదము -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Page has been created" msgid "Database %1$s has been renamed to %2$s" msgstr "పుటను సృష్టించడమైనది" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -326,14 +326,14 @@ msgstr "పట్టిక" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "పరిమాణం" @@ -347,7 +347,7 @@ msgstr "వాడుకలో ఉన్నది" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "సృష్టి" @@ -355,7 +355,7 @@ msgstr "సృష్టి" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "చివరి మార్పు" @@ -363,7 +363,7 @@ msgstr "చివరి మార్పు" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "చివరి చూపు" @@ -378,7 +378,7 @@ msgstr[1] "%s పట్టికలు" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" @@ -412,9 +412,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "డేటాబేస్" @@ -432,67 +432,67 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "స్థితి" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "చర్య" # మొదటి అనువాదము -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "చూపించు" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -509,12 +509,12 @@ msgstr "" msgid "Bad parameters!" msgstr "చెల్లని పరామితులు!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -525,7 +525,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -534,168 +534,168 @@ msgstr "" msgid "Invalid export type" msgstr "చెల్లని ఎగుమతి రకం" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" # మొదటి అనువాదము -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "బిందువును చేర్చు" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a New User" msgid "Add a linestring" msgstr "కొత్త వాడుకరిని చేర్చు" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" # మొదటి అనువాదము -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add into comments" msgid "Add a polygon" msgstr "స్పందనలకు చేర్చు" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది" @@ -709,7 +709,7 @@ msgstr "వెనుకకి" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -718,7 +718,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -764,7 +764,7 @@ msgid "Edit Index" msgstr "క్రొత్త వాడుకరిని చేర్చు" # మొదటి అనువాదము -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %d column(s) to index" @@ -821,24 +821,24 @@ msgstr "మూసివేయి" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "మార్చు" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -848,24 +848,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "మొత్తం" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -885,7 +885,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -905,7 +905,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -951,13 +951,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "మెబై" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "కిబై" @@ -1013,32 +1013,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "అనుసంధానాలు" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "బై" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "గిబై" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "టెబై" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "పిబై" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ఎబై" @@ -1056,11 +1056,11 @@ msgstr "%s పట్టిక" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "అమరికలు" @@ -1084,12 +1084,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "ఏమీలేదు" @@ -1188,7 +1188,7 @@ msgstr "ప్రాధమిక అమరికలు" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1283,7 +1283,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "సమయం" @@ -1392,8 +1392,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "దిగుమతి" @@ -1643,12 +1643,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "భద్రపరచు" @@ -1713,8 +1713,8 @@ msgstr "గణాంకాలను చూపించు" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "మొదలుపెట్టు" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1923,63 +1923,63 @@ msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "డిసెం" @@ -2020,32 +2020,32 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "శని" @@ -2161,16 +2161,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "క్షణానికి" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "నిమిషానికి" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "గంటకి" @@ -2187,7 +2187,7 @@ msgstr "గరిష్ఠం: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "పత్రావళి" @@ -2211,14 +2211,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "పొరపాటు" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2236,84 +2236,84 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "క్వెరీ ని సమర్పించు" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "ఆది" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" # మొదటి అనువాదము -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2322,10 +2322,10 @@ msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" @@ -2333,18 +2333,18 @@ msgid "Previous" msgstr "క్రితము" # మొదటి అనువాదము -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "తదుపరి" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2352,106 +2352,106 @@ msgctxt "Last page" msgid "End" msgstr "ముగింపు" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "నిర్మాణాకృతి" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" # మొదటి అనువాదము -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "ఖాళీ" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "ముద్రించు" @@ -2468,154 +2468,154 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ఆరోహణ" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "అవరోహణ" # మొదటి అనువాదము -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "క్రమంలో పేర్చు" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "లక్షణాలు" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "లక్షణాల వరుసలను చేర్చు/తొలగించు" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "క్వెరీ ని మార్చు" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "పట్టికల్ని వాడు" # మొదటి అనువాదము -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "లేదా" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "మరియు" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "చొప్పించు" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "తొలగించు" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "మార్చు" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "కనీసం ఒక్క పదం" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "అన్ని పదాలూ" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "మొత్తం: %s పోలిక" msgstr[1] "మొత్తం: %s పోలికలు" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "తొలగించు" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" # మొదటి అనువాదము -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "వెతుకు" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Use Tables" msgid "Inside tables:" msgstr "పట్టికల్ని వాడు" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "" @@ -2666,8 +2666,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2746,7 +2746,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2763,8 +2763,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2775,7 +2775,7 @@ msgstr "" msgid "total" msgstr "మొత్తం" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2786,7 +2786,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2796,8 +2796,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "" @@ -2840,51 +2840,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2893,66 +2893,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "వ్యాఖ్య" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2961,12 +2961,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -3037,18 +3037,18 @@ msgstr "వాడుకరి" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3185,8 +3185,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3196,11 +3196,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "విలువ" @@ -3211,60 +3211,60 @@ msgstr "విలువ" msgid "Table Search" msgstr "శోధించు" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3338,14 +3338,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3597,7 +3597,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "పట్టికలు" @@ -3611,12 +3611,12 @@ msgstr "పట్టికలు" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3724,7 +3724,7 @@ msgstr "" msgid "Closed" msgstr "మూసివేయి" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3862,22 +3862,22 @@ msgstr "వికీ" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -4147,7 +4147,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4256,7 +4256,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4292,7 +4292,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5751,10 +5751,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6009,52 +6009,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "వివరాలు..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "సంకేతపదాన్ని మార్చు" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "సంకేతపదం లేదు" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6190,8 +6198,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6267,69 +6275,69 @@ msgstr "మరిన్ని అమరికలు" msgid "authored on %1$s by %2$s" msgstr "మరిన్ని అమరికలు" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6405,73 +6413,73 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "పుటలు" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "విన్నపములను వ్రాయుము" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6662,8 +6670,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6680,129 +6688,129 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Copy database to" msgid "Go to database: %s" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "దాచు" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6850,7 +6858,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -7150,7 +7158,7 @@ msgstr "పట్టిక ఎంపికలు" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7265,8 +7273,8 @@ msgstr "%sకి స్వాగతం" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7339,21 +7347,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "సేవకి స్వరూపణం" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7492,20 +7500,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7744,7 +7753,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "పట్టిక పేరు" @@ -7946,7 +7955,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8012,7 +8021,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8023,8 +8032,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8044,32 +8053,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8078,34 +8087,34 @@ msgstr "ఏ వాడుకరి ఐనను" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8173,7 +8182,7 @@ msgstr "వివరాలు..." msgid "Event name" msgstr "కొత్త పేరు" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8559,7 +8568,7 @@ msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవ msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8568,7 +8577,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8615,97 +8624,97 @@ msgid "Extra" msgstr "" # మొదటి అనువాదము -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "పుటని సృష్టించు" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "పుట పేరు" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "రంగుని చూపించు" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "దిశ" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "కాగితపు పరిమాణం" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8997,7 +9006,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "వాడుకరి" @@ -9136,8 +9145,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9197,11 +9206,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9283,7 +9292,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -9296,12 +9305,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -9330,14 +9339,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -9347,7 +9356,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" @@ -9377,7 +9386,7 @@ msgid "Propose table structure" msgstr "" # మొదటి అనువాదము -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." @@ -9391,7 +9400,7 @@ msgid "Add column" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" @@ -9416,15 +9425,15 @@ msgstr "%s మార్లు తరువాత" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9432,15 +9441,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9488,15 +9497,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "సమాచారం" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9525,18 +9534,18 @@ msgstr "" msgid "Move column" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9544,35 +9553,35 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "ఏమీలేదు" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s మార్లు తరువాత" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9764,7 +9773,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -10066,29 +10075,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "అసలు స్థానం" @@ -10096,7 +10105,7 @@ msgstr "అసలు స్థానం" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -10104,24 +10113,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s డేటాబేస్ తుడిచివేయడమైనది" msgstr[1] "%s డేటాబేస్ తుడిచివేయడమైనది" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10192,49 +10201,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10243,262 +10252,262 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "సంబంధాలు" # మొదటి అనువాదము -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Analyze" msgid "Run analyzer" msgstr "విశదీకరించు" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "పరిపాలన" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10506,117 +10515,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "పంపించు" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" # మొదటి అనువాదము -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "ఆజ్ఞ" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10624,78 +10633,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10703,7 +10712,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10711,42 +10720,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10754,33 +10763,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10789,245 +10798,245 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" # మొదటి అనువాదము -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11035,99 +11044,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11135,18 +11144,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11154,70 +11163,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "మొదలుపెట్టు" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" # మొదటి అనువాదము -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "స్పందనలకు చేర్చు" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11226,7 +11235,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11234,18 +11243,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11253,11 +11262,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11266,85 +11275,85 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "డేటాబేస్ తొలగించండి" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "గణాంకాలను చూపించు" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11353,7 +11362,7 @@ msgstr[0] "క్షణం" msgstr[1] "క్షణం" # మొదటి అనువాదము -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11473,19 +11482,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "సార్వత్రిక విలువ" @@ -11775,42 +11784,42 @@ msgstr "" msgid "Wrong data" msgstr "భోగట్టా" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -11966,16 +11975,16 @@ msgstr "క్రొత్త వాడుకరిని చేర్చు" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12138,39 +12147,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "More settings" msgid "Create version %1$s of %2$s" msgstr "మరిన్ని అమరికలు" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12521,8 +12530,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12651,8 +12660,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/th.po b/po/th.po index ff04b50a34..ddecb79fa2 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:48+0200\n" "Last-Translator: Anusuk Sangubon \n" "Language-Team: Thai \n" -"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.2\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "หมายเลขหน้า:" @@ -38,36 +38,36 @@ msgstr "" "ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก " "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "ค้นหา" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "ค้นหา" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "ลงมือ" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "คำอธิบาย" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "ใช้ค่านี้" @@ -116,18 +116,18 @@ msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบ msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,18 +135,18 @@ msgstr "หมายเหตุของตาราง" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "สดมภ์" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -163,11 +163,11 @@ msgstr "สดมภ์" msgid "Type" msgstr "ชนิด" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -179,9 +179,9 @@ msgstr "ชนิด" msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -194,8 +194,8 @@ msgstr "ว่างเปล่า (null)" msgid "Default" msgstr "ค่าปริยาย" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -203,11 +203,11 @@ msgstr "ค่าปริยาย" msgid "Links to" msgstr "เชื่อมไปยัง" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -216,12 +216,12 @@ msgstr "เชื่อมไปยัง" msgid "Comments" msgstr "หมายเหตุ" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -232,23 +232,23 @@ msgstr "หมายเหตุ" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "ไม่" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -260,8 +260,8 @@ msgstr "ไม่" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ใช่" @@ -271,45 +271,45 @@ msgid "View dump (schema) of database" msgstr "ดูโครงสร้างของฐานข้อมูล" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "เลือกทั้งหมด" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "ไม่มีชื่อฐานข้อมูล" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "ฐานข้อมูล %1$s ได้ถูกเปลี่ยนชื่อเป็น %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "คัดลอกฐานข้อมูล %1$s ไปเก็บในชื่อ %2$s เรียบร้อยแล้ว" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -319,14 +319,14 @@ msgstr "ตาราง" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "แถว" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "ขนาด" @@ -339,7 +339,7 @@ msgstr "ใช้อยู่" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "สร้างเมื่อ" @@ -347,7 +347,7 @@ msgstr "สร้างเมื่อ" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" @@ -355,7 +355,7 @@ msgstr "ปรับปรุงครั้งสุดท้ายเมื่ #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" @@ -369,7 +369,7 @@ msgstr[0] "%s ตาราง" msgid "You have to choose at least one column to display" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "สลับไปยัง %svisual builder%s" @@ -401,9 +401,9 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "ฐานข้อมูล" @@ -421,66 +421,66 @@ msgstr "ปรับปรุงแล้ว" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "สถานะ" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "แสดง" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "ลบการติดตามตารางนี้" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "โยนทิ้ง" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "ใช้งานได้" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "ใช้งานไม่ได้" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "รุ่น" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "เลิกติดตามตาราง" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "ติดตามตาราง" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Log ของฐานข้อมูล" @@ -496,12 +496,12 @@ msgstr "ประเภทการส่งออกที่เลือกจ msgid "Bad parameters!" msgstr "พารามิเตอร์ไม่ถูกต้อง!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "พื้นที่ไม่เพียงพอที่จะบันทึกไฟล์ %s" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -512,7 +512,7 @@ msgstr "ให้เปลี่ยนชื่อไฟล์ หรือเ msgid "The web server does not have permission to save the file %s." msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเว็บเซิร์ฟเวอร์ไม่อนุญาต" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" @@ -521,115 +521,122 @@ msgstr "ข้อมูลที่ส่งออกถูกบันทึก msgid "Invalid export type" msgstr "ประเภทที่ส่งออกไม่ถูกต้อง!" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "เรขาคณิต" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "จุด" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "จุด %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "เพิ่มจุด" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "แถวข้อความ" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "ด้านนอก" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "ด้านใน" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "เพิ่มข้อความ" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "เพิ่มด้านใน" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "เพิ่มรูปหลายเหลี่ยม" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "เพิ่มเรขาคณิต" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "ส่งออก" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั่น และวางลงในข้อความช่อง \"ค่า\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "คุณพยายามที่จะอับโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้ " -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "แสดงบุ๊คมาร์ค" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -638,7 +645,7 @@ msgstr "" "คุณพยายามที่จะโหลดไฟล์ที่ไม่สนับสนุนระบบการบีบอัดไฟล์ข้อมูล (%s) กรุณากำหนดค่าอย่างไรอย่างหนึ่ง " "หรือปิดการตั้งค่าของคุณ" -#: import.php:400 +#: import.php:404 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 " @@ -648,32 +655,32 @@ msgstr "" "กรุณาแก้ไขไฟล์ตั้งค่าของ PHP ดูเอกสารเพิ่มเติมได้ที่ [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "ไม่สามารถแปลงไฟล์ข้อมูลชุดอักขระได้ในไลค์บารี" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "นำเข้าได้สำเร็จ %d ได้ถูกนำเดินการแล้ว" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "หมดเวลาการนำเข้าสริปแล้ว กรุณานำเข้าไฟล์สริปใหม่" -#: import.php:513 +#: import.php:517 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." @@ -681,9 +688,9 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว" @@ -697,7 +704,7 @@ msgstr "ย้อนกลับ" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" @@ -706,7 +713,7 @@ msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" msgid "Do you really want to execute \"%s\"?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "คุณกำลังจะทำลายฐานข้อมูลทั้งหมด" @@ -746,7 +753,7 @@ msgstr "เพิ่มดัชนีใหม่" msgid "Edit Index" msgstr "แก้ไขดัชนี" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "ทำดัชนีใน สดมส์นี้ %d" @@ -796,24 +803,24 @@ msgstr "ปิด" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "สถานะการใช้ปัจจุบัน" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "โปรเซสที่ทำงานอยู่" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "คำสั่ง SQL ปัจจุบัน" @@ -823,24 +830,24 @@ msgstr "ข้อมูลคงที่" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "อื่นๆ" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -860,7 +867,7 @@ msgstr "การจราจรของเครื่องแม่ข่า msgid "Connections since last refresh" msgstr "การเชื่อมต่อ จากครั้งล่าสุด" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "โพรเซส" @@ -878,7 +885,7 @@ msgstr "คำถามจากครั้งล่าสุด" msgid "Questions (executed statements by the server)" msgstr "คำสั่ง (คำสั่งที่รันโดยเครื่องแม่ข่าย)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "สถิติของคำสั่ง" @@ -922,13 +929,13 @@ msgstr "หน่วยความจำ swap ของระบบ" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "กิโลไบต์" @@ -980,32 +987,32 @@ msgstr "Byte ที่ส่ง" msgid "Bytes received" msgstr "Byte ที่รับ" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "การเชื่อมต่อ" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "ไบต์" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "เอกซะไบต์" @@ -1019,11 +1026,11 @@ msgstr "%d ตาราง" msgid "Questions" msgstr "คำถาม" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "การจราจร" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "การตั้งค่า" @@ -1044,12 +1051,12 @@ msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "ไม่มี" @@ -1144,7 +1151,7 @@ msgstr "เปลี่ยนการตั้งค่า" msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "ชื่อการแสดงผล" @@ -1230,7 +1237,7 @@ msgstr "อธิบายผลคำสั่ง" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "เวลา" @@ -1326,8 +1333,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" @@ -1546,12 +1553,12 @@ msgstr "เวลาที่ทำคำสั่ง" msgid "%d is not valid row number." msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "บันทึก" @@ -1611,8 +1618,8 @@ msgstr "ผลลัพธ์ SQL" msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "ข้าม" @@ -1716,7 +1723,7 @@ msgstr "อัพเดทแถว" msgid "Generate password" msgstr "สร้างรหัสอัตโนมัติ" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "สร้างอัตโนมัติ" @@ -1813,63 +1820,63 @@ msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "ธ.ค." @@ -1910,32 +1917,32 @@ msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "ส." @@ -2050,16 +2057,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "ต่อวินาที" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "ต่อนาที" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -2076,7 +2083,7 @@ msgstr "ขนาดใหญ่สุด: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "เอกสารอ้างอิง" @@ -2099,14 +2106,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "ผิดพลาด" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "คำค้น SQL" @@ -2124,85 +2131,85 @@ msgstr "คำค้น SQL" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "ประมวลผลคำค้น" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "อา." #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2210,28 +2217,28 @@ msgctxt "First page" msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "ต่อไป" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2239,106 +2246,106 @@ msgctxt "Last page" msgid "End" msgstr "ท้ายสุด" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "โครงสร้าง" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "แทรก" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "เปิดดู" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "กระบวนการ" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "ไม่มีไฟล์ที่จะอัพโหลด" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "ลบข้อมูล" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "พิมพ์" @@ -2355,104 +2362,104 @@ msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม msgid "Font size" msgstr "ขนาดตัวอักษร" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "น้อยไปมาก" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "มากไปน้อย" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "เรียง" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "เงื่อนไข" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "เพิ่ม/ลบ แถว" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "เพิ่ม/ลบ สดมภ์" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "ปรับปรุงคำค้น" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "ใช้ตาราง" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "หรือ" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "และ" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "เพิ่ม" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "ลบ" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "แก้ไข" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "ทุกคำ" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "เหมือนทั้งวลี" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "รูปแบบคำพ้อง (regular expression)" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ผลการค้นหา \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "รวม: %s ผลลัพธ์ที่ตรง" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2460,44 +2467,44 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "ลบ" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "ค้น:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "ภายในตาราง:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "ในคอลัมน์:" @@ -2550,8 +2557,8 @@ msgstr "" msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2637,7 +2644,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -2654,8 +2661,8 @@ msgstr "ในคำค้น" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" #: libraries/DisplayResults.class.php:4939 @@ -2666,7 +2673,7 @@ msgstr "แสดงระเบียนที่ " msgid "total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" @@ -2677,7 +2684,7 @@ msgstr "คำค้นใช้เวลา %01.4f วินาที" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "ทำกับที่เลือก:" @@ -2687,8 +2694,8 @@ msgstr "ทำกับที่เลือก:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "เลือกทั้งหมด" @@ -2729,41 +2736,41 @@ msgstr "ไม่พบลิงก์" msgid "Too many error messages, some are not displayed." msgstr "มีข้อความผิดพลาดจำนวนมาก บางส่วนจึงซ่อนไว้ไม่แสดง" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "ไฟล์ไม่ได้ถูกอัพโหลด" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "ไฟล์ที่อัพโหลดขนาดเกินที่กำหนด" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "จำนวนไฟล์ที่อัพโหลดเกินจำนวนสูงสุดที่กำหนด" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "ไฟล์ที่ถูกอัพโหลดมาไม่ครบ" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "ไม่พบแฟ้มชั่วคราว" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "ไม่สามารถเขียนไฟล์ลงดิสได้" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "ไม่รองรับไฟล์ประเภทนี้" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2771,11 +2778,11 @@ msgstr "" "มีข้อผิดพลาดระหว่างการอัพโหลด กรุณาดู [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "ไม่สามารถอ่านไฟล์อัพโหลด" @@ -2784,68 +2791,68 @@ msgstr "ไม่สามารถอ่านไฟล์อัพโหลด msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "ดัชนี" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "เอกเทศ" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "การเรียงลำดับ" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "หมายเหตุ" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "โยนคีย์หลักทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2854,12 +2861,12 @@ msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอัน #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "ฐานข้อมูล" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -2929,19 +2936,19 @@ msgstr "ผู้ใช้" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "ตัวแปร" @@ -3072,8 +3079,8 @@ msgstr "" "ไม่สามารถบันทึกคุณสมบัติ UI \"% s\" ได้ การเปลี่ยนแปลงจะมีผล หลังจากคุณรีเฟรชหน้านี้ " "โปรดตรวจสอบหากมีการเปลี่ยนโครงสร้างของตาราง" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "ฟังก์ชั่น" @@ -3084,11 +3091,11 @@ msgstr "ฟังก์ชั่น" msgid "Operator" msgstr "กระบวนการ" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "ค่า" @@ -3098,67 +3105,67 @@ msgstr "ค่า" msgid "Table Search" msgstr "ค้นหา" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "แทรก" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "เพิ่มเงื่อนไขในการค้นหา:" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "ระเบียนต่อหน้า" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "ลำดับการแสดง:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "คำค้น SQL" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3233,14 +3240,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3498,7 +3505,7 @@ msgstr "ใช้ร่วมกัน" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "ตาราง" @@ -3512,12 +3519,12 @@ msgstr "ตาราง" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "ข้อมูล" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -3626,7 +3633,7 @@ msgstr "" msgid "Closed" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3773,22 +3780,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "คืนค่าเดิม" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "อนุญาตให้ผู้ใช้แก้ไขค่านี้" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "เริ่มใหม่" @@ -4066,7 +4073,7 @@ msgstr "ชุดอักขระของไฟล์ (character set):" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "รูปแบบ" @@ -4190,7 +4197,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-type" @@ -4231,7 +4238,7 @@ msgid "Enclose table and column names with backquotes" msgstr "ใส่ 'backqoute' ให้กับชื่อตารางและฟิลด์" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5739,10 +5746,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5998,54 +6005,62 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "พิมพ์ใหม่" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6198,8 +6213,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6287,71 +6302,71 @@ msgstr "รุ่นของเซิร์ฟเวอร์" msgid "authored on %1$s by %2$s" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "ไม่มีฐานข้อมูล" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "ไม่มีฐานข้อมูล" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6431,72 +6446,72 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 #, fuzzy msgid "Pages to be flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6687,8 +6702,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6705,127 +6720,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "ข้อมูลไบนารี " -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข " -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6875,7 +6890,7 @@ msgstr "" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7165,7 +7180,7 @@ msgstr "ตัวเลือกตาราง" msgid "Rename table to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7287,8 +7302,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 " "เพื่อสร้างอย่างใดอย่างหนึ่ง" @@ -7363,21 +7378,21 @@ msgstr "อนุญาตให้เข้าใช้ไม่ได้ ช msgid "Can not find signon authentication script:" msgstr "สามารถค้นหา signon สำหรับตรวจสอบสคริปต์:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "แฟ้ม %s ไม่ควรประกอบไปด้วยรหัสคีย์ใดๆ" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "ตรวจสอบฮาร์ดแวร์ล้มเหลว" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "ไม่มีคีย์รับรองความถูกต้อง" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "กำลังตรวจสอบ..." @@ -7539,20 +7554,21 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "โฮสต์" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "เวลาในการสร้าง" @@ -7794,7 +7810,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8002,7 +8018,7 @@ msgstr "การสร้างเอกสาร PDF" msgid "Displaying Column Comments" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 #, fuzzy msgid "Browser transformation" @@ -8071,7 +8087,7 @@ msgstr "ไม่เลือกเลย" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8082,8 +8098,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8104,32 +8120,32 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "ตัวแปร" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 #, fuzzy msgid "Server ID" msgstr "เซิร์ฟเวอร์" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "ผู้ใช้ใดๆ" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8138,34 +8154,34 @@ msgstr "ผู้ใช้ใดๆ" msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8229,7 +8245,7 @@ msgstr "" msgid "Event name" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 #, fuzzy msgid "Event type" msgstr "ชนิดคำค้น" @@ -8611,7 +8627,7 @@ msgstr "ไม่พบตารางใด ๆ ในฐานข้อมู msgid "There are no events to display." msgstr "ไม่มีเหตุการณ์ใดๆ" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8621,7 +8637,7 @@ msgstr "ไม่มีเหตุการณ์ใดๆ" msgid "The %s table doesn't exist!" msgstr "ไม่มีตาราง \"%s\"!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8668,107 +8684,107 @@ msgstr "แอตทริบิวต์" msgid "Extra" msgstr "เพิ่มเติม" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "เริ่มหน้าใหม่" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "จัดตำแหน่งอัตโนมัติ" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "เลือกทั้งหมด" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "เลือกตาราง" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "ชื่อคอลัมน์" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "แสดงกริด" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "แสดงสี" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "แสดงมิติของตาราง" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "ให้แสดงตารางทุกอัน ด้วยความกว้างเท่ากันหรือไม่?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "แนวนอน" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "แนวตั้ง" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "สร้างเมื่อ" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "ขนาดกระดาษ" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9070,7 +9086,7 @@ msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "ผู้ใช้" @@ -9210,8 +9226,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9273,11 +9289,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9371,7 +9387,7 @@ msgstr "" "ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " "ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" @@ -9384,12 +9400,12 @@ msgstr "การติดตามเริ่มทำงานแล้ว" msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" @@ -9420,14 +9436,14 @@ msgid "Column %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "ไพรมารี" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "ดัชนี" @@ -9437,7 +9453,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" @@ -9465,7 +9481,7 @@ msgstr "มุมมองรีเลชัน" msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9476,7 +9492,7 @@ msgstr "ต้องเลือกให้แสดงอย่างน้อ msgid "Add column" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" @@ -9500,15 +9516,15 @@ msgstr "หลัง %s" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "สถิติของแถว" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "ไม่คงที่" @@ -9516,15 +9532,15 @@ msgstr "ไม่คงที่" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "ความยาวแถว" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "ขนาดแถว " -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9578,15 +9594,15 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "ข้อมูล" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "มีผล" @@ -9625,18 +9641,18 @@ msgstr "" msgid "Move column" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "ตัวเลือกการแปลง" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 #, fuzzy msgid "" "Please enter the values for transformation options using this format: 'a', " @@ -9648,36 +9664,36 @@ msgstr "" ">ถ้าต้องการใส่เครื่องหมาย backslash (\"\\\") หรือ อัญประกาศเดี่ยว (\"'\") " "เข้าไปในค่าเหล่านั้น ให้ใส่เครื่องหมาย แบ๊กแสลช นำหน้า (ตัวอย่าง: '\\\\xyz' or 'a\\'b')" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "ไม่มี" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "หลัง %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9872,7 +9888,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" @@ -10186,30 +10202,30 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "ตำแหน่ง" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "ตำแหน่งเริ่มแรก" @@ -10217,31 +10233,31 @@ msgstr "ตำแหน่งเริ่มแรก" msgid "Character Sets and Collations" msgstr "ชุดตัวอักษร และการเรียงลำดับ" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "สถิติฐานข้อมูล" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "ให้มีการเก็บสถิติ" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10315,50 +10331,50 @@ msgstr "สิทธิได้ถูกเรียกใช้ใหม่เ msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10367,277 +10383,277 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "โปรดเลือกฐานข้อมูล" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "ข้อความเต็ม (fulltext)" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "เฉพาะโครงสร้าง" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "เฉพาะโครงสร้าง" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 #, fuzzy msgid "Query cache" msgstr "ชนิดคำค้น" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 #, fuzzy msgid "Delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 #, fuzzy msgid "Show open tables" msgstr "แสดงตาราง" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "ข้อมูลรันไทม์" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows per page" msgid "Number of data points: " msgstr "ระเบียนต่อหน้า" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "เรียกใหม่" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy msgid "Show only alert values" msgstr "แสดงตาราง" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy msgid "Show unformatted values" msgstr "แสดงตาราง" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "รีเลชัน" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "ฟังก์ชั่น" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10645,117 +10661,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "คำสั่ง" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "เซิร์ฟเวอร์ MySQL นี้รันมาเป็นเวลา %s. เริ่มตอน %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "ได้รับ" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "คำสั่ง" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10763,78 +10779,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10842,7 +10858,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10850,42 +10866,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10893,33 +10909,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10928,242 +10944,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11171,99 +11187,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11271,18 +11287,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11290,70 +11306,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "หยุดการติดตามแล้ว" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ส." -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "เพิ่มฟิลด์ใหม่" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11362,7 +11378,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11370,18 +11386,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11389,11 +11405,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11401,90 +11417,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "เอาฐานข้อมูลออก" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "เลือกตาราง" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "คำค้น SQL" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "สถิติของแถว" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "เลือกทั้งหมด" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11492,7 +11508,7 @@ msgid_plural "%d seconds" msgstr[0] "ต่อวินาที" msgstr[1] "ต่อวินาที" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11612,19 +11628,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "ตัวแปร และค่ากำหนด ของเซิร์ฟเวอร์" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "ค่าเซสชั่น" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "ค่าแบบโกลบอล" @@ -11913,44 +11929,44 @@ msgstr "" msgid "Wrong data" msgstr "ไม่มีฐานข้อมูล" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "สร้างโดย" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "ป้ายชื่อ" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12104,16 +12120,16 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Index name:" msgstr "ชื่อดัชนี :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(ชื่อของไพรมารีคีย์จะต้องเป็น \"PRIMARY\" เท่านั้น!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "ชนิดของดัชนี :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "เพิ่มดัชนีคอลัมน์ %s" @@ -12282,39 +12298,39 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "รุ่นของเซิร์ฟเวอร์" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "รุ่นของเซิร์ฟเวอร์" @@ -12671,8 +12687,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12804,8 +12820,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13511,8 +13527,8 @@ msgid "" "perfectly adequate for your system if you don't have much InnoDB tables or " "other services running on the same machine." msgstr "" -"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า " -"60%% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " +"คุณกำลังใช้ %s%% ของหน่วยความจำของคุณสำหรับการบัฟเฟอร์ InnoDB ถ้าคุณกำลังกำหนดน้อยกว่า 60%" +"% อย่างไรก็ตาม ที่นี้อาจไม่สมบูรณ์เพียงพอสำหรับระบบของคุณ ถ้าคุณไม่มีตาราง InnoDB " "มากหรือบริการอื่นๆ ที่ทำงานบนเครื่องเดียวกัน" #: libraries/advisory_rules.txt:452 @@ -13782,8 +13798,8 @@ msgstr "concurrent_insert ตั้งค่าไว้ที่ 0" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" -#~ "%s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" +#~ "s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tk.po b/po/tk.po index 189ab689a3..f0b991f6ed 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" -"Language: tk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Show all" msgstr "Hemmesini görkez" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sahypa belgisi:" @@ -43,36 +43,36 @@ msgstr "" "ýapdyňyz, ýada siziň brauzeriňiziň hopsuzlyk sazlamalary äpişgeler-arasy " "täzelemäni saklaýandyr." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Gözle" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -80,28 +80,28 @@ msgstr "Gözle" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Git" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Açarsözi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Düşündiriş" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Şu bahany ulan" @@ -123,18 +123,18 @@ msgstr "%1$s maglumatlar ulgamy döredildi" msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -142,18 +142,18 @@ msgstr "" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -170,11 +170,11 @@ msgstr "" msgid "Type" msgstr "" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -186,9 +186,9 @@ msgstr "" msgid "Null" msgstr "" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -201,8 +201,8 @@ msgstr "" msgid "Default" msgstr "" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -210,11 +210,11 @@ msgstr "" msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -223,12 +223,12 @@ msgstr "" msgid "Comments" msgstr "" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -239,23 +239,23 @@ msgstr "" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -267,8 +267,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "" @@ -278,47 +278,47 @@ msgid "View dump (schema) of database" msgstr "" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been copied to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -328,14 +328,14 @@ msgstr "" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "" @@ -348,7 +348,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "" @@ -356,7 +356,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "" @@ -364,7 +364,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "" @@ -379,7 +379,7 @@ msgstr[1] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -411,9 +411,9 @@ msgstr "" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "" @@ -431,66 +431,66 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "" @@ -506,12 +506,12 @@ msgstr "" msgid "Bad parameters!" msgstr "" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -522,7 +522,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -531,160 +531,160 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "" @@ -698,7 +698,7 @@ msgstr "" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -707,7 +707,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -747,7 +747,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -797,24 +797,24 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "" @@ -824,24 +824,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "" @@ -861,7 +861,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -921,13 +921,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "" @@ -979,32 +979,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "" @@ -1018,11 +1018,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "" @@ -1043,12 +1043,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1141,7 +1141,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "" @@ -1221,7 +1221,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "" @@ -1311,8 +1311,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1523,12 +1523,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1584,8 +1584,8 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1684,7 +1684,7 @@ msgstr "" msgid "Generate password" msgstr "" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "" @@ -1781,63 +1781,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "" @@ -1875,32 +1875,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "" @@ -2013,16 +2013,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2039,7 +2039,7 @@ msgstr "" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "" @@ -2062,14 +2062,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "" @@ -2087,210 +2087,210 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "" @@ -2307,149 +2307,149 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "" msgstr[1] "" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "" @@ -2494,8 +2494,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2572,7 +2572,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2589,8 +2589,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2601,7 +2601,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2612,7 +2612,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "" @@ -2622,8 +2622,8 @@ msgstr "" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "" @@ -2661,51 +2661,51 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2714,66 +2714,66 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2782,12 +2782,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "" @@ -2855,18 +2855,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -2996,8 +2996,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3007,11 +3007,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3019,60 +3019,60 @@ msgstr "" msgid "Table Search" msgstr "" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3145,14 +3145,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3395,7 +3395,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3409,12 +3409,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "" @@ -3516,7 +3516,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3654,22 +3654,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -3934,7 +3934,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "" @@ -4043,7 +4043,7 @@ msgstr "" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "" @@ -4079,7 +4079,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "" @@ -5511,10 +5511,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5764,52 +5764,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -5939,8 +5947,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6014,69 +6022,69 @@ msgstr "" msgid "authored on %1$s by %2$s" msgstr "" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 -msgid "Importing into the current server" -msgstr "" - #: libraries/display_import.lib.php:189 -#, php-format -msgid "Importing into the database \"%s\"" +msgid "Importing into the current server" msgstr "" #: libraries/display_import.lib.php:191 #, php-format +msgid "Importing into the database \"%s\"" +msgstr "" + +#: libraries/display_import.lib.php:193 +#, php-format msgid "Importing into the table \"%s\"" msgstr "" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6152,71 +6160,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6407,8 +6415,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6423,123 +6431,123 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6583,7 +6591,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "" @@ -6870,7 +6878,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -6984,8 +6992,8 @@ msgstr "" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7055,21 +7063,21 @@ msgstr "" msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7206,20 +7214,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7444,7 +7453,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -7644,7 +7653,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -7710,7 +7719,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -7721,8 +7730,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7742,31 +7751,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7775,34 +7784,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -7861,7 +7870,7 @@ msgstr "" msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8199,7 +8208,7 @@ msgstr "" msgid "There are no events to display." msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8208,7 +8217,7 @@ msgstr "" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8254,97 +8263,97 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -8636,7 +8645,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -8769,8 +8778,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 "" #: libraries/server_privileges.lib.php:3054 @@ -8827,11 +8836,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -8913,7 +8922,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "" @@ -8926,12 +8935,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "" @@ -8959,14 +8968,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -8976,7 +8985,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9000,7 +9009,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9008,7 +9017,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9031,15 +9040,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9047,15 +9056,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9103,15 +9112,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9138,18 +9147,18 @@ msgstr "" msgid "Move column" msgstr "" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9157,33 +9166,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9357,7 +9366,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -9632,29 +9641,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -9662,31 +9671,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9754,49 +9763,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9805,255 +9814,255 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10061,115 +10070,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10177,78 +10186,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10256,7 +10265,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10264,42 +10273,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10307,33 +10316,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10342,242 +10351,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10585,99 +10594,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -10685,18 +10694,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -10704,61 +10713,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -10767,7 +10776,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10775,18 +10784,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -10794,11 +10803,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -10806,86 +10815,86 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11001,19 +11010,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11297,42 +11306,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "" @@ -11463,16 +11472,16 @@ msgstr "" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11631,38 +11640,38 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -11998,8 +12007,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12117,8 +12126,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/tr.po b/po/tr.po index a6a3be2f07..799626b6cc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-22 18:53+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: Turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sayfa numarası:" @@ -40,36 +40,36 @@ msgstr "" "olabilirsiniz ya da tarayıcınızın güvenlik ayarları pencereler arası " "güncellemeleri engellemek için yapılandırılmıştır." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Ara" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Ara" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Git" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Anahtar adı" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Açıklama" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Bu değeri kullan" @@ -120,18 +120,18 @@ msgstr "Veritabanı %1$s oluşturuldu." msgid "Database comment: " msgstr "Veritabanı yorumu: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Tablo yorumları" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Sütun" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Sütun" msgid "Type" msgstr "Türü" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Türü" msgid "Null" msgstr "Boş" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Boş" msgid "Default" msgstr "Varsayılan" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Varsayılan" msgid "Links to" msgstr "Bağlantı verilen:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Bağlantı verilen:" msgid "Comments" msgstr "Yorumlar" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Yorumlar" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Hayır" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Hayır" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Evet" @@ -275,33 +275,33 @@ msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Tümünü Seç" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s veritabanı %2$s olarak yeniden adlandırıldı" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s veritabanı %2$s veritabanına kopyalandı" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -310,12 +310,12 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek " "için %sburaya%s tıklayın." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -325,14 +325,14 @@ msgstr "Tablo" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Satır" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Boyut" @@ -345,7 +345,7 @@ msgstr "kullanımda" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Oluşturma" @@ -353,7 +353,7 @@ msgstr "Oluşturma" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Son güncellenme" @@ -361,7 +361,7 @@ msgstr "Son güncellenme" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Son kontrol" @@ -375,7 +375,7 @@ msgstr[0] "%s tablo" 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:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sGörsel yaratıcı'ya%s geç" @@ -407,9 +407,9 @@ msgstr "İzlenen tablolar" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Veritabanı" @@ -427,66 +427,66 @@ msgstr "Güncellendi" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Durum" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Eylem" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Göster" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Bu tablo için izleme verisini sil" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Kaldır" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "aktif değil" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Tabloyu izle" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Veritabanı Günlüğü" @@ -502,12 +502,12 @@ msgstr "Seçili dışa aktarma türü dosyaya kaydedilmelidir!" msgid "Bad parameters!" msgstr "Kötü parametreler!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -520,7 +520,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." @@ -529,117 +529,124 @@ msgstr "Döküm, %s dosyasına kaydedildi." msgid "Invalid export type" msgstr "Geçersiz dışa aktarma türü" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu için değer" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Taban Katman olarak OpenStreetMaps kullan" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Nokta" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Nokta %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Nokta ekle" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Satır dizgisi" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Dış Halka" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "İç Halka" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "İç halka ekle" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Poligon ekle" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Geometri ekle" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Çıktı" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine " "alttaki dizgiyi yapıştırın" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "İşaretleme silindi." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Dosya okunamadı" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -648,7 +655,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:400 +#: import.php:404 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 " @@ -658,28 +665,28 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[a@./Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Karakter grubu dönüştürme kütüphanesi olmadan dosyanın karakter grubu " "dönüştürülemez" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -687,7 +694,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "aynı dosyayı yeniden gönderin ve içe aktarma devam edecektir." -#: import.php:513 +#: import.php:517 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." @@ -696,9 +703,9 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL sorgunuz başarılı olarak çalıştırıldı" @@ -713,7 +720,7 @@ 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:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -722,7 +729,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -762,7 +769,7 @@ msgstr "İndeksi ekle" msgid "Edit Index" msgstr "İndeksi düzenle" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "İndekse %d sütun ekle" @@ -812,24 +819,24 @@ msgstr "Kapat" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Düzenle" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Canlı trafik çizelgesi" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Canlı bağ./işlem çizelgesi" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Canlı sorgu çizelgesi" @@ -839,24 +846,24 @@ msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -876,7 +883,7 @@ msgstr "Sunucu trafiği (KiB olarak)" msgid "Connections since last refresh" msgstr "Son yenilemeden bu yana bağlantılar" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "İşlemler" @@ -894,7 +901,7 @@ msgstr "Son yenilemeden bu yana sorular" msgid "Questions (executed statements by the server)" msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Sorgu istatistikleri" @@ -940,13 +947,13 @@ msgstr "Sistem takası" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -998,32 +1005,32 @@ msgstr "Gönderilmiş bayt" msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Bağlantılar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EiB" @@ -1037,11 +1044,11 @@ msgstr "%d tablo" msgid "Questions" msgstr "Sorular" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Ayarlar" @@ -1062,12 +1069,12 @@ msgid "Please add at least one variable to the series" msgstr "Lütfen diziye en az bir değişken ekleyin" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Yok" @@ -1111,8 +1118,8 @@ msgid "" "depending on your system." msgstr "" "slow_query_log etkinleştirildi ama sunucu sadece %d saniyeden daha uzun " -"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak " -"0-2 saniyeye ayarlanması tavsiye edilir." +"süren sorguları günlükler. Bu long_query_time'ın, sisteminize bağlı olarak 0-" +"2 saniyeye ayarlanması tavsiye edilir." #: js/messages.php:150 #, php-format @@ -1167,7 +1174,7 @@ msgstr "Ayarları değiştir" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Çizelge Başlığı" @@ -1253,7 +1260,7 @@ msgstr "Çıktıyı açıkla" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Süre" @@ -1350,8 +1357,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" @@ -1564,12 +1571,12 @@ msgstr "Sorgu yürütme süresi" msgid "%d is not valid row number." msgstr "%d geçerli bir satır sayısı değil." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Kaydet" @@ -1630,8 +1637,8 @@ msgstr "Sorgu sonuçları" msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Yoksay" @@ -1740,7 +1747,7 @@ msgstr "Veri satır(larını)nı göster" msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Üret" @@ -1758,8 +1765,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " -"%s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" +"s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:373 @@ -1839,63 +1846,63 @@ msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Ara" @@ -1933,32 +1940,32 @@ msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Ctesi" @@ -2073,16 +2080,16 @@ msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" "%1$s. satırda beklenmedik karakter. Beklenen sekme, ama bulunan \"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "saniye başına" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "dakika başına" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "saat başına" @@ -2099,7 +2106,7 @@ msgstr "En fazla: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Belgeler" @@ -2122,14 +2129,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Hata" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL sorgusu" @@ -2147,210 +2154,210 @@ msgstr "SQL sorgusu" msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Sorguyu Gönder" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Yenile" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL'i onayla" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Bu sorguyu sıralı düzenle" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profil çıkart" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Paz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Eksik parametreler:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Önceki" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Sonraki" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Yapı" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Ekle" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Gözat" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "İşlemler" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Boşalt" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Çalıştır" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Yazdır" @@ -2368,147 +2375,147 @@ msgstr "" msgid "Font size" msgstr "Yazı Tipi boyutu" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Küçükten Büyüğe" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Büyükten Küçüğe" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sırala" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriter" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Kriter satırı Ekle/Sil" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Sütun Ekle/Sil" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Sorguyu Güncelle" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Tabloları kullan" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Veya" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ve" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Değiştir" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "kelimelerin en azından biri" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "tüm kelimeler" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "kesin ifade" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "kurallı ifade olarak" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s için arama sonuçları:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Toplam: %s benzeşme" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Sil" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Veritabanında ara" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Aranacak kelimeler veya değerler (joker: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Bul:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Kelimeler boşlukla ayrılır (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Tablo içindekiler:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "İç sütun:" @@ -2553,8 +2560,8 @@ msgstr "Her %s satırda bir başlıklar" msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2631,7 +2638,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Sonlandır" @@ -2650,8 +2657,8 @@ msgstr "sorgu içerisinde" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -2663,7 +2670,7 @@ msgstr "Gösterilen satırlar" msgid "total" msgstr "toplam" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" @@ -2674,7 +2681,7 @@ msgstr "Sorgu %01.4f san. sürdü" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Seçilileri:" @@ -2684,8 +2691,8 @@ msgstr "Seçilileri:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Tümünü Seç" @@ -2723,16 +2730,16 @@ msgstr "Bağlantı bulunamadı" msgid "Too many error messages, some are not displayed." msgstr "Çok fazla hata mesajı, bazıları görüntülenmedi." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Dosya gönderilmiş bir dosya değil." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2740,27 +2747,27 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2768,11 +2775,11 @@ msgstr "" "Gönderilen dosyayı taşıma hatası, [a@./Documentation." "html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Gönderilen dosya okunamıyor (taşınamadı)." @@ -2781,68 +2788,68 @@ msgstr "Gönderilen dosya okunamıyor (taşınamadı)." msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" "Bu kısmı geçmek için tanımlama bilgileri (cookies) etkinleştirilmiş " "olmalıdır." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "Bu kısmı geçmek için Javascript etkinleştirilmiş olmalıdır" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Tanımlı indeks yok!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "İndeksler" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Karşılaştırma" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Yorum" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Birincil anahtar kaldırıldı" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "%s indeksi kaldırıldı" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2853,12 +2860,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Veritabanları" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Sunucu" @@ -2926,18 +2933,18 @@ msgstr "Kullanıcılar" msgid "Synchronize" msgstr "Eşitle" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binari günlüğü" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Kopya Etme" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Değişkenler" @@ -3068,8 +3075,8 @@ msgstr "" "yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse " "lütfen kontrol edin." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "İşlev" @@ -3079,11 +3086,11 @@ msgstr "İşlev" msgid "Operator" msgstr "İşletici" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Değer" @@ -3091,60 +3098,60 @@ msgstr "Değer" msgid "Table Search" msgstr "Tablo Arama" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "Düzenle/Ekle" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "Sütunları seç (en az bir):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Sayfa başına satır sayısı" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Görünüm düzeni:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "Bu sütunu her noktayı etiketlemek için kullan" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "Çizim için en fazla satır" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "İlave arama kriteri" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "İki farklı sütun için \"örnekle sorgulama\" (joker: \"%\") yap" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Örnekle sorgulama\" yap. (joker: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "Noktalara gözat/düzenle" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "Nasıl kullanılır" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "Odaklamayı sıfırla" @@ -3230,20 +3237,20 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" "Küçük kayan noktalı bir sayı, izin verilebilir değerler -3.402823466E+38'den " "-1.175494351E-38'e, 0 ve 1.175494351E-38'den 3.402823466E+38'e kadardır" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" -"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler " -"-1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " +"Çift duyarlıklı kayan noktalı bir sayı, izin verilebilir değerler -" +"1.7976931348623157E+308'den -2.2250738585072014E-308'e, 0 ve " "2.2250738585072014E-308'den 1.7976931348623157E+308'e kadardır" #: libraries/Types.class.php:311 @@ -3533,7 +3540,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tablolar" @@ -3547,12 +3554,12 @@ msgstr "Tablolar" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Veri" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Ek Yük" @@ -3660,7 +3667,7 @@ msgstr "Açık" msgid "Closed" msgstr "Kapandı" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3798,22 +3805,22 @@ msgstr "Viki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "Bu ayar etkisizleştirildi, yapılandırmanıza uygulanmayacaktır" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Ayar değeri: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Varsayılan değeri geri yükle" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Sıfırla" @@ -4107,7 +4114,7 @@ msgstr "Dosyanın karakter grubu" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Biçim" @@ -4216,7 +4223,7 @@ msgstr "Etiket anahtarı" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME türü" @@ -4252,7 +4259,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tablo ve sütun adlarını ters tırnaklarla kapattır" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL uyumluluk kipi" @@ -5850,10 +5857,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6122,7 +6129,7 @@ msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin." msgid "possible deep recursion attack" msgstr "olası aşırı özyinelemeli saldırı" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." @@ -6130,48 +6137,56 @@ msgstr "" "Sunucu yanıt vermiyor (ya da yerel MySQL sunucusunun soketi doğru olarak " "yapılandırılmadı)." -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "Sunucu yanıt vermiyor." -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Ayrıntılar..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı " "başarısız oldu." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Parola değiştir" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Parola yok" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Parola tekrarı" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Parola Adreslemesi" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 uyumlu" @@ -6302,8 +6317,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -6383,7 +6398,7 @@ msgstr "%2$s tarafından %1$s tarihinde işlendi" msgid "authored on %1$s by %2$s" msgstr "%2$s tarafından %1$s tarihinde hazırlandı" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6393,33 +6408,33 @@ msgstr "" "webkit tabanlı (Safari, Google Chrome, Arora vs.) tarayıcılardaki bilinen " "bir hatadır." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "%s / %s" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 msgid "Uploading your import file..." msgstr "İçe aktarma dosyanız gönderiliyor..." -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "%s/san." -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "Yaklaşık kalan %MIN dik. %SEC san." -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "Yaklaşık kalan %SEC san." -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Dosya işleme alındı, lütfen sabırlı olun." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6427,30 +6442,30 @@ msgstr "" "Lütfen sabırlı olun, dosya gönderilmekte. Gönderme ile ilgili ayrıntılar " "mevcut değil." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "Şu anki sunucu içine aktarılıyor" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "\"%s\" veritabanı içine aktarılıyor" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "\"%s\" tablosu içine aktarılıyor" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "İçe Aktarmak için Dosya:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "Dosya sıkıştırılmış (%s) ya da sıkıştırılmamış olabilir." -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6537,71 +6552,71 @@ msgstr "" "Hafıza arabelleği boyutu InnoDB, veriyi önbelleklemek ve tablolarını " "indekslemek için kullanır." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Arabellek Havuzu" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Durumu" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Arabellek Havuzu Kullanımı" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sayfa" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Serbest sayfalar" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Bozuk sayfalar" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Veri içeren sayfalar" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Temizlenen sayfalar" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Meşgul sayfalar" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Sabitlenmiş sayfalar" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Arabellek Havuzu Etkinliği" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "İstekleri oku" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Yazma istekleri" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Okuma kaçırıyor" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Yazma bekliyor" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Okuma kaçırması %" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Yazma beklemesi %" @@ -6835,8 +6850,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -6853,127 +6868,127 @@ msgstr "Paul McCullagh'ın The PrimeBase XT Bloğu" msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "Adına tıklayarak yapının içeriklerini görün" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını " "değiştirin" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "Aşağıdaki \"Yapı\" bağlantısıyla yapısını düzenleyin" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "Şu veritabanına git: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "Şu tabloya git: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "Şu görünüme git: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Gizle" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ve sonra" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7017,7 +7032,7 @@ msgstr "Tablo ön eki ekle" msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 msgid "Do you really want to execute the following query?" msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" @@ -7304,7 +7319,7 @@ msgstr "Tablo seçenekleri" msgid "Rename table to" msgstr "Tabloyu yeniden şuna adlandır" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Depolama Motoru" @@ -7418,8 +7433,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -7499,21 +7514,21 @@ msgstr "Yanlış kullanıcı adı/parola girdiniz. Erişim engellendi." msgid "Can not find signon authentication script:" msgstr "Oturumu açma kimlik doğrulaması betiği bulunamıyor:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "%s dosyası herhangi bir anahtar kimliği içermiyor" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Donanım kimlik doğrulaması başarısız" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Geçerli kimlik doğrulama anahtarı takılı değil" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Kimlik doğrulanıyor..." @@ -7650,20 +7665,21 @@ msgstr "MIME türlerini göster" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Anamakine" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Üretim Zamanı" @@ -7918,7 +7934,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV girdisinde %d. satırda geçersiz sütun sayısı." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Tablo adı" @@ -8166,7 +8182,7 @@ msgstr "PDF'lerin oluşturulması" msgid "Displaying Column Comments" msgstr "Sütun Yorumları gösteriliyor" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" @@ -8240,7 +8256,7 @@ msgstr "Hiçbirini Seçme" msgid "Slave configuration" msgstr "Slave yapılandırması" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Master sunucuyu değiştir veya yeniden yapılandır" @@ -8253,8 +8269,8 @@ msgstr "" "olun. Eğer değilseniz lütfen aşağıdaki satırı [mysqld] bölümü içine ekleyin:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8274,15 +8290,15 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Değişken" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Sunucu ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8290,17 +8306,17 @@ 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:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Herhangi kullanıcı" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8309,27 +8325,27 @@ msgstr "Herhangi kullanıcı" msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8338,7 +8354,7 @@ msgstr "" "Anamakine tablosu kullanıldığında bu alan yoksayılır ve yerine Anamakine " "tablosunda saklanan değerler kullanılır." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Parola Üret" @@ -8397,7 +8413,7 @@ msgstr "Ayrıntılar" msgid "Event name" msgstr "Olay adı" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Olay türü" @@ -8740,7 +8756,7 @@ msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı" msgid "There are no events to display." msgstr "Görüntülemek için olaylar yok." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8749,7 +8765,7 @@ msgstr "Görüntülemek için olaylar yok." msgid "The %s table doesn't exist!" msgstr "%s tablosu yok!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8795,91 +8811,91 @@ msgstr "Öznitelikler" msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Yeni bir sayfa oluştur" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Sayfa adı" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "Otomatik yerleşim tabanı" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Dahili bağlantılar" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Lütfen düzenlemek için sayfa seçin" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Sayfa seç" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Tabloları seç" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Sütun adları" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Bağlantılı şemayı göster" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "Dışa Aktarma Bağlantılı Türü Seç" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Izgara göster" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Rengi göster" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Tabloların boyutlarını göster" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Bütün tablolar aynı genişlikte gösterilsin" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Veri sözlüğü" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Sadece anahtarları göster" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Peyzaj" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Portre" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Yönlendirme" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Kağıt boyutu" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8887,7 +8903,7 @@ msgstr "" "Şu anki sayfa, daha fazla bulunması gereksiz tablolara verilmiş referanslara " "sahip. Bu referansları silmek ister misiniz?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Karalama panosunu değiştir" @@ -9192,7 +9208,7 @@ msgstr ""%s" veritabanına erişimi olan kullanıcılar" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Kullanıcı" @@ -9327,8 +9343,8 @@ msgstr "Kullanıcılara genel bakış" 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 " @@ -9389,11 +9405,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -9489,7 +9505,7 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli " "PHP uzantılarının kurulu olduğunu kontrol edin." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" @@ -9502,12 +9518,12 @@ msgstr "İzleme aktif." msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" @@ -9535,14 +9551,14 @@ msgid "Column %s has been dropped" msgstr "Sütun %s kaldırıldı" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Birincil" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "İndeks" @@ -9552,7 +9568,7 @@ msgid "Spatial" msgstr "Uzaysal" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tam metin" @@ -9576,7 +9592,7 @@ msgstr "Bağlantı görünümü" msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." @@ -9584,7 +9600,7 @@ msgstr "En az bir sütun eklemek zorundasınız." msgid "Add column" msgstr "Sütun ekle" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" @@ -9607,15 +9623,15 @@ msgstr "%s Şunun Sonrasına" msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "sabit" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "değişken" @@ -9623,15 +9639,15 @@ msgstr "değişken" msgid "partitioned" msgstr "bölüme ayrıldı" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Satır uzunluğu" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Satır boyutu" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "Sonraki otoindeks" @@ -9677,15 +9693,15 @@ msgstr "UZAYSAL indeks ekle" msgid "Add FULLTEXT index" msgstr "FULLTEXT indeks ekle" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Bilgi" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Alan kullanımı" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Etkili" @@ -9718,7 +9734,7 @@ msgstr "" msgid "Move column" msgstr "Sütunu taşı" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9727,11 +9743,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:145 msgid "Transformation options" msgstr "Dönüşüm seçenekleri" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9743,33 +9759,33 @@ 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:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM ya da SET verisi çok mu uzun?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "Daha fazla düzenleme alanı alın" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "Yok" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "ilk" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "%s sonrasına" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "PARTITION tanımı" @@ -9956,8 +9972,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "phpMyAdmin yapılandırma depolaması tamamiyle yapılandırılmadı, bazı " -"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya" -"%s tıklayın." +"genişletilmiş özellikler etkisizleştirildi. Nedenini öğrenmek için %sburaya%" +"s tıklayın." #: main.php:468 #, php-format @@ -9977,7 +9993,7 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Veritabanı yok" @@ -10214,8 +10230,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " -"%sKur programcığı%s kullanarak." +"Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. %" +"sKur programcığı%s kullanarak." #: prefs_manage.php:310 msgid "Save to browser's storage" @@ -10256,29 +10272,29 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Günlük adı" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Konum" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Orijinal konum" @@ -10286,30 +10302,30 @@ msgstr "Orijinal konum" msgid "Character Sets and Collations" msgstr "Karakter Grupları ve Karşılaştırmalar" -#: server_databases.php:116 +#: server_databases.php:118 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d veritabanı başarılı olarak kaldırıldı." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Veritabanı istatistikleri" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Master kopya etme" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Slave kopya etme" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "İstatistikler etkin" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10379,39 +10395,39 @@ msgstr "Yetkiler başarılı olarak yüklendi." msgid "Unknown error" msgstr "Bilinmeyen hata" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "Master %s sunucusuna bağlanılamıyor." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Master değiştirilemiyor" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "Master sunucu %s olarak başarılı bir şekilde değiştirildi" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Master durumunu göster" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10420,11 +10436,11 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında master sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Master yapılandırması" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10439,19 +10455,19 @@ msgstr "" "kopya etmek için sadece belirli veritabanlarına izin verebilirsiniz. Lütfen " "kipi seçin:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Tüm veritabanlarını kopya et; Yoksay:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Tüm veritabanlarını yoksay; Kopya et:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Lütfen veritabanlarını seçin:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10459,7 +10475,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:260 +#: server_replication.php:287 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 " @@ -10469,82 +10485,82 @@ msgstr "" "tıklayın. Ondan sonra bu sunucunun master olarak yapılandırıldığını " "gösteren, sizi uyaran bir mesaj görmelisiniz" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Slave SQL işlemi çalışmıyor!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Slave G/Ç işlemi çalışmıyor!" -#: server_replication.php:334 +#: server_replication.php:361 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ılır. Bunu " "istiyor musunuz:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Slave durum tablosuna bak" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Veritabanlarını master ile eşitle" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Slave'i kontrol et:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Tam başlat" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Tam durdur" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Slave'i sıfırla" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "Sadece SQL İşlemini başlat" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "Sadece SQL İşlemini durdur" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "Sadece G/Ç İşlemini başlat" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "Sadece G/Ç İşlemini durdur" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Hata yönetimi:" -#: server_replication.php:372 +#: server_replication.php:399 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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Şu anki hatayı atla" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "İleri atla" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "hata." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10553,130 +10569,130 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Denetimci" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Sorgu önbelleği" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "İşlemler" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Geçici veri" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Gecikmiş eklemeler" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Anahtar önbelleği" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Birleştirmeler" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sıralama" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "İşlem koordinatörü" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Tüm tabloları temizle (kapat)" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Açık tabloları göster" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Slave durumunu göster" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Sorgu önbelleğini temizle" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "Tüm durum değişkenleri" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "İzleme" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "Danışman" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 msgid "Number of data points: " msgstr "Veri noktası sayısı: " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "Yenileme oranı: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "Süzgeçler" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "İçerdiği kelime:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "Sadece uyarı değerlerini göster" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "Kategoriye göre süz..." -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "Biçimlendirilmemiş değerleri göster" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "İlgili bağlantılar:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "Çözümleyiciyi çalıştır" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "Talimatlar" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10684,7 +10700,7 @@ msgstr "" "Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu " "değişkenlerinde öneriler sağlayabilir." -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10693,7 +10709,7 @@ msgstr "" "Yine de not edin bu sistem basit hesaplamalar üzerine kurulu ve sisteminize " "zorunlu olarak uygulanamayabilir başlıca kurallara göre öneriler sağlar." -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10704,7 +10720,7 @@ msgstr "" "alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki " "edebilir." -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10715,31 +10731,31 @@ msgstr "" "iyileştirilme olmadıysa, değişikliği geri almak olacaktır." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "Başlangıçtan bu yana sorular: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "İfadeler" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "#" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL sunucusunun çalışma süresi: %1$s. Başlatıldığı zaman: %2$s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." @@ -10747,19 +10763,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master olarak " "çalışır." -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında slave olarak " "çalışır." -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10767,11 +10783,11 @@ msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10779,35 +10795,35 @@ msgstr "" "Meşgul sunucu üzerinde, bayt sayaçları aşırı işleyebilir, bu yüzden MySQL " "sunucusu tarafından raporlanan istatistikler doğru olmayabilir." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Alınan" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Komut" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10815,11 +10831,11 @@ msgstr "" "Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısıdır." -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL sunucusuna bağlanmak için başarısız girişim sayısıdır." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10829,16 +10845,16 @@ msgstr "" "aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin " "sayısıdır." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Geçici binari günlüğü önbelleğinde kullanılan işlemlerin sayısıdır." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL sunucusuna bağlantı girişimi (başarılı ya da değil) sayısıdır." -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10850,11 +10866,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olmasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10862,7 +10878,7 @@ msgstr "" "İfadeler çalıştırılırken sunucu tarafından bellek içindeki geçici tabloların " "sayısı otomatik olarak oluşturuldu." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10870,7 +10886,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10878,23 +10894,23 @@ msgstr "" "Kullanımda olan INSERT DELAYED işleticisi işlem sayısı. INSERT DELAYED " "komutunu kullanan her farklı tablodan biri kendi işlemini alır." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Tablodan satırın kaç kez silindiği sayısıdır." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10904,7 +10920,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10914,7 +10930,7 @@ msgstr "" "sunucunun çok fazla indeks taraması yapıyor olduğunu gösterir; örneğin, " "SELECT col1 FROM foo, anlaşılıyor ki col1 indekslenmiş." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -10923,7 +10939,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10933,7 +10949,7 @@ msgstr "" "aralık ile indeks sütununu sorguluyorsanız ya da indeks taraması " "yapıyorsanız, bu arttırılan miktardır." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10941,7 +10957,7 @@ msgstr "" "Anahtar sırasında önceki satırı okumak için istek sayısıdır. Bu okuma " "yöntemi başlıca ORDER BY ... DESC komutunu uyarlamak için kullanılır." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10954,7 +10970,7 @@ msgstr "" "fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " "birleştirmelere sahipsiniz." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10966,35 +10982,35 @@ msgstr "" "düzgün bir şekilde indekslenmediğinde ya da sorgularınız, sahip olduğunuz " "indeksleri çıkarına kullanmak için yazmadığında önerilir." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Tablo içinde satır güncellemek için istek sayısıdır." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Tablo içinde satır eklemek için istek sayısıdır." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Veri içeren sayfa sayısıdır (dolu veya temiz)." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Temizlenmesi için istenmiş arabellek havuz sayfa sayısıdır." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11004,7 +11020,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11016,11 +11032,11 @@ msgstr "" "zamanda Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data değerleri gibi hesaplanabilir." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11028,7 +11044,7 @@ msgstr "" "InnoDB \"rastgele\" önden okuma başlatımı sayısıdır. Sorgu tablonun büyük " "bir kısmını taradığı zaman bu olur ama rastgele düzende." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11036,11 +11052,11 @@ msgstr "" "InnoDB sıralı önden okuma başlatımı sayısıdır. InnoDB sıralı tam tablo " "taraması yaptığı zaman bu olur." -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB'nin bitirdiği veya yaptığı mantıksal okuma isteği sayısıdır." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11048,7 +11064,7 @@ msgstr "" "InnoDB'nin arabellek havuzundan tatmin olamadığı ve tek-sayfa okuması yapmak " "zorunda olduğu mantıksal okuma sayısıdır." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11062,55 +11078,55 @@ msgstr "" "durumlarını sayar. Eğer arabellek havuzu boyutu düzgün bir şekilde " "ayarlandıysa, bu değer küçük olmalıdır." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" "Bu amaç için yazılmış sayfa sayısı ve gerçekleştirilmiş çifte-yazım yazma " "sayısıdır." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11118,35 +11134,35 @@ msgstr "" "Sahip olunan bekleme sayısıdır çünkü günlük arabelleği çok küçük ve devam " "etmeden önce temizlenmesi için beklemek zorundayız." -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Günlük dosyasına fiziksel yazma sayısıdır." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Günlük dosyasına bitmiş fsync() yazma sayısıdır." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Günlük dosyasına yazılı bayt sayısıdır." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11154,52 +11170,52 @@ msgstr "" "Derlenen InnoDB sayfa boyutu (varsayılan 16KB). Birçok değer sayfalarda " "sayılır; sayfa boyutu bunların kolaylıkla bayt'a dönüştürülmesine izin verir." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için ortalama süredir." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Milisaniye cinsinden satır kilidi elde ederken harcanmış toplam süredir." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Milisaniye cinsinden satır kilidi elde etmek için en fazla süredir." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Satır kilidinin beklemek zorunda kaldığı süre sayısıdır." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -11207,7 +11223,7 @@ msgstr "" "Anahtar önbelleğindeki değiştirilmiş ama diskte henüz temizlenmemiş anahtar " "bloğu sayısıdır. Not_flushed_key_blocks olarak bilinip kullanılır." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -11216,7 +11232,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -11225,15 +11241,15 @@ msgstr "" "Anahtar önbelleğinde kullanılan blok sayısıdır. Bu değerin en uç noktada " "olması bir kerede en fazla blok sayısının kullanımda olmamasını gösterir." -#: server_status.php:1536 +#: server_status.php:1535 msgid "Percentage of used key cache (calculated value)" msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Önbellekten anahtar bloğunun okunması için istek sayısıdır." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11243,7 +11259,7 @@ msgstr "" "büyükse, key_buffer_size değeriniz muhtemelen çok küçüktür. Eksik önbellek " "oranı Key_reads/Key_read_requests olarak hesaplanabilir." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -11251,21 +11267,21 @@ msgstr "" "Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " "anahtar önbelleğidir (hesaplanmış değer)" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Önbelleğe anahtar bloğu yazmak için istek sayısıdır." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Diske anahtar bloğunu fiziksel yazma sayısıdır." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Yazma isteklerine nazaran fiziksel yazmaların yüzdesidir (hesaplanmış değer)" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11276,7 +11292,7 @@ msgstr "" "karşılaştırmak için yararlıdır. Varsayılan değer 0, henüz derlenmiş sorgu " "olmadığı anlamına gelir." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -11284,11 +11300,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED sıralarında yazılmak için bekleyen satır sayısıdır." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11296,19 +11312,19 @@ msgstr "" "Açık olan tablo sayısıdır. Eğer açık tablolar büyükse, tablo önbellek " "değeriniz muhtemelen çok küçüktür." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "Açık olan akış sayısıdır (başlıca günlükleme için kullanılır)." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -11318,19 +11334,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11342,7 +11358,7 @@ msgstr "" "yardımcı olabilir. Önbellekten hangi sorguların kaldırılacağına karar vermek " "için sorgu önbelleği en az son kullanılmış (LRU) stratejisini kullanır." -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11350,19 +11366,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Sorgu önbelleği içindeki toplam blok sayısıdır." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11370,11 +11386,11 @@ msgstr "" "İndeksler kullanmayan birleştirme sayısıdır. Eğer bu değer 0 değilse, " "tablolarınızın indekslerini dikkatli olarak kontrol etmelisiniz." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "Referans tablosunda aralık araması kullanan birleştirme sayısıdır." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11383,7 +11399,7 @@ msgstr "" "birleştirme sayısıdır. (Eğer bu değer 0 değilse, tablolarınızın indekslerini " "dikkatli olarak kontrol etmelisiniz.)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11391,15 +11407,15 @@ msgstr "" "İlk tabloda aralıkları kullanan birleştirme sayısıdır. (Normal olarak " "kusurlu değildir, eğer büyükse bile.)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "İlk tablonun tam taramasının yapıldığı birleştirme sayısıdır." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Slave SQL işlemi tarafından şu anki açık geçici tablo sayısıdır." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11407,11 +11423,11 @@ msgstr "" "Kopya edilen slave SQL işleminin yeniden denediği işlerin toplam " "(başlangıçtan beri) süre sayısıdır." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Eğer sunucu master'a bağlı slave ise, bu AÇIKTIR." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11419,12 +11435,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Long_query_time saniyeden daha uzun zaman almış sorgu sayısıdır." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11434,23 +11450,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "düşünmelisiniz." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "Taranan tablo tarafından yapılmış sıralama sayısıdır." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Tablo kilidinin hemen tanındığı süre sayısıdır." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11462,7 +11478,7 @@ msgstr "" "uyarlamalısınız ve sonra ya tablonuzu ya da tablolarınızı bölün veya kopya " "etmeyi kullanın." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11472,11 +11488,11 @@ msgstr "" "Threads_created/Bağlantılar olarak hesaplanabilir. Eğer bu değer kırmızı " "ise, thread_cache_size boyutunuzu yükseltmelisiniz." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11488,47 +11504,47 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:1578 +#: server_status.php:1577 msgid "Thread cache hit rate (calculated value)" msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "İzlemeyi başlat" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "Yönergeler/Ayarlama" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "Çizelge ekle" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "Çizelgeleri düzenle/yeniden düzelt" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "Çizelge sütunları" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." @@ -11536,15 +11552,15 @@ msgstr "" "Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " "ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "Varsayılana sıfırla" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "İzleme Yönergeleri" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11558,7 +11574,7 @@ msgstr "" "etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " "sunucu yükünü %15'e kadar arttırır" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11570,11 +11586,11 @@ msgstr "" "günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " "sunucu çizelgeleme özelliklerini kullanabilirsiniz." -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "İzleyici kullanımı:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11585,7 +11601,7 @@ msgstr "" "değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11598,11 +11614,11 @@ msgstr "" "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " "ifadesine tıklayabilirsiniz." -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "Lütfen unutmayın:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11615,85 +11631,85 @@ msgstr "" "etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " "izlemeyi gerektirmez." -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "Hazır çizelge" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "Durum değişkeni(leri)" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "Dizi seç:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "Genellikle izlenen" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "veya değişken adını yazın:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "Ayırtedici değer olarak görüntüle" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "Böleni uygula" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "Veri değerlerine birimi ekle" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "Bu diziyi ekle" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "Diziyi temizle" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "Çizelgedeki Dizi:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "Günlük istatistikleri" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "Seçili zaman aralığı:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "İstatistiklerin oluşturulmasını istediğiniz yerden günlüğü seçin." -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "Sonuçlar sorgu metnine göre gruplandırılır." -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "Sorgu çözümleyici" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d saniye" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11810,19 +11826,19 @@ msgstr "" "Hedef veritabanı kaynak veritabanı ile tamamen eşitlenecektir. Kaynak " "veritabanı değiştirilmeden aynen kalacaktır." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "Ayar değişkeni başarısız oldu" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Sunucu değişkenleri ve ayarları" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Oturum değeri" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Genel değer" @@ -12100,9 +12116,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " -"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" -"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" +"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:312 @@ -12117,8 +12133,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " -"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" +"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:314 @@ -12161,42 +12177,42 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." msgid "Wrong data" msgstr "Yanlış veri" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor." -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL sonucu" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Üreten:" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: tbl_alter.php:133 +#: tbl_alter.php:123 msgid "The columns have been moved successfully." msgstr "Sütunlar başarılı olarak taşındı." @@ -12327,18 +12343,18 @@ msgstr "İndeksi düzenle" msgid "Index name:" msgstr "İndeks adı:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" sadece ve sadece bir birincil anahtarın adı olmalıdır!" ")" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "İndeks türü:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse %s sütun ekle" @@ -12505,38 +12521,38 @@ msgstr "%s olarak dışa aktar" msgid "Show versions" msgstr "Sürümleri göster" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "%s için izlemeyi devre dışı bırak" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "%s için izlemeyi aktif et" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Hemen aktif et" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, php-format msgid "Create version %1$s of %2$s" msgstr "%1$s / %2$s sürümünü oluştur" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Sürüm oluştur" @@ -12911,8 +12927,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" "Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " "%%%s. Bu %%80'in üzerinde olmalıdır" @@ -13063,8 +13079,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" "Tüm sıralamaların %%%s'i geçici tablolara sebep olur, bu değer %%10'dan " "düşük olmalıdır." @@ -14012,12 +14028,12 @@ msgstr "concurrent_insert 0'a ayarlı" #~ "Eğer D işlenirse, varsayılan 0'dır. Eğer M işlenirse, varsayılan 10'dur." #~ msgid "" -#~ "A small (single-precision) floating-point number. Allowable values are " -#~ "-3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " +#~ "A small (single-precision) floating-point number. Allowable values are -" +#~ "3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to " #~ "3.402823466E+38." #~ msgstr "" -#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler " -#~ "-3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " +#~ "Küçük (tek duyarlıklı) kayan noktalı sayı. İzin verilebilir değerler -" +#~ "3.402823466E+38'den -1.175494351E-38'e, 0 ve 1.175494351E-38'den " #~ "3.402823466E+38'e." #~ msgid "" diff --git a/po/tt.po b/po/tt.po index 2580ff3614..3ed9e47b21 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.0\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Bitneñ sanı:" @@ -39,36 +39,36 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Ezläw" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "Ezläw" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Äydä" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Açıqlama" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Bu bäyä belän" @@ -117,18 +117,18 @@ msgstr "%s biremlege beterelde." msgid "Database comment: " msgstr "Biremlek açıqlaması: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,7 +136,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -144,12 +144,12 @@ msgstr "Tüşämä açıqlaması" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -166,11 +166,11 @@ msgstr "Alan iseme" msgid "Type" msgstr "Töre" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -182,9 +182,9 @@ msgstr "Töre" msgid "Null" msgstr "Buş" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -197,8 +197,8 @@ msgstr "Buş" msgid "Default" msgstr "Töpcay" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -206,11 +206,11 @@ msgstr "Töpcay" msgid "Links to" msgstr "Bonı belän bäyläneş:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -219,12 +219,12 @@ msgstr "Bonı belän bäyläneş:" msgid "Comments" msgstr "Açıqlama" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -235,23 +235,23 @@ msgstr "Açıqlama" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Yuq" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -263,8 +263,8 @@ msgstr "Yuq" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Äye" @@ -274,35 +274,35 @@ msgid "View dump (schema) of database" msgstr "Biremlek eçtälegen (tözeleşen) çığaru" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Saylap Beter" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -314,12 +314,12 @@ 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_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -329,14 +329,14 @@ msgstr "Tüşämä" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Kerem" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Küläme" @@ -349,7 +349,7 @@ msgstr "totıla" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Yasalışı" @@ -357,7 +357,7 @@ msgstr "Yasalışı" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Soñğı yañartılu" @@ -365,7 +365,7 @@ msgstr "Soñğı yañartılu" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Soñğı tikşerü" @@ -380,7 +380,7 @@ msgstr[0] "%s tüşämä" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -416,9 +416,9 @@ msgstr "Tüşämä tikşerü" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Biremlek" @@ -438,70 +438,70 @@ msgstr "" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Torış" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Eş" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Kürsät" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Beter" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "" -#: db_tracking.php:137 +#: db_tracking.php:141 #, fuzzy msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: db_tracking.php:185 +#: db_tracking.php:196 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: db_tracking.php:230 +#: db_tracking.php:243 #, fuzzy msgid "Database Log" msgstr "Biremlek" @@ -522,12 +522,12 @@ msgstr "" msgid "Bad parameters!" msgstr "Biremlekne bolay atap quy" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -540,7 +540,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." @@ -550,171 +550,171 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." msgid "Invalid export type" msgstr "Çığaru ısulı" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "%s alan östäw" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "%s alan östäw" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy msgid "Add geometry" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 +#: import.php:95 #, 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Tamğa beterelde." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Birem uqıp bulmadı" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL-sorawıñ uñışlı eşkärtelde" @@ -728,7 +728,7 @@ msgstr "Kire" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." @@ -738,7 +738,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän." msgid "Do you really want to execute \"%s\"?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -788,7 +788,7 @@ msgstr "Tezeş" msgid "Edit Index" msgstr "Kiläse yazma üzgärtü" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -847,26 +847,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Tözätü" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Saylaw" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy msgid "Live query chart" msgstr "SQL-soraw" @@ -877,24 +877,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -916,7 +916,7 @@ msgstr "Server Saylaw" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Proseslar" @@ -936,7 +936,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy msgid "Query statistics" msgstr "Kerem Nöfüse" @@ -987,13 +987,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1055,32 +1055,32 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Totaşular" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1096,11 +1096,11 @@ msgstr "%s tüşämä" msgid "Questions" msgstr "Farsíça" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Taşım" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1125,12 +1125,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Buş" @@ -1230,7 +1230,7 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Current settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1320,7 +1320,7 @@ msgstr "SQL Centekläw" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Waqıt" @@ -1429,8 +1429,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" @@ -1685,12 +1685,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%d digäne yazma sanı öçen kileşmi." -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Saqla" @@ -1756,8 +1756,8 @@ msgstr "Soraw qaytarmasın eşkärtü" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Qarama" @@ -1867,7 +1867,7 @@ msgstr "Yazma sanı:" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Ürçet" @@ -1991,27 +1991,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2019,37 +2019,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dek" @@ -2098,32 +2098,32 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Şmb" @@ -2257,16 +2257,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "sekund sayın" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minut sayın" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "säğät sayın" @@ -2283,7 +2283,7 @@ msgstr "Max: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Qullanma" @@ -2306,14 +2306,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Xata" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-soraw" @@ -2331,85 +2331,85 @@ msgstr "SQL-soraw" msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Sorawnı Yulla" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Yañart" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL'nı Tikşer" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Ykş" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, 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/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2417,28 +2417,28 @@ msgctxt "First page" msgid "Begin" msgstr "Başlawğa" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Uzğan" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Kiläse" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2446,106 +2446,106 @@ msgctxt "Last page" msgid "End" msgstr "Azaq" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Tözeleş" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Östäw" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Küzätü" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Eşkärtü" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 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/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Buşat" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Bastır" @@ -2562,158 +2562,158 @@ msgstr "" msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Artıp" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Kimep" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Tezü" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Şart" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Add/Delete Field Columns" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Sorawnı Yañart" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Tüşämä qullanıp" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Yä" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Wä" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Tıq" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Sal" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Üzgärt" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "berärse bulsa" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "barısı da bulsa" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "tulı tezmä, tögäl kileş" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "regexp kileş" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" ezläw näticäse %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Tulayım: %s kileşü" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Sal" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Biremlektä ezläw" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Ezläw:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Kiläse tüşämä eçendä:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" @@ -2770,8 +2770,8 @@ msgstr "Tamğalanğan soraw cibärü" msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2858,7 +2858,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Üter" @@ -2875,8 +2875,8 @@ msgstr "sorawda" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 "" #: libraries/DisplayResults.class.php:4939 @@ -2887,7 +2887,7 @@ msgstr "Yazma sanı:" msgid "total" msgstr "tulayım" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" @@ -2898,7 +2898,7 @@ msgstr "Soraw eşkärtü %01.4f sek aldı" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Saylanğannı:" @@ -2908,8 +2908,8 @@ msgstr "Saylanğannı:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Saylap Beter" @@ -2950,52 +2950,52 @@ msgstr "Bäyläneş tabılmadı" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 #, 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/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3004,67 +3004,67 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 msgid "Javascript must be enabled past this point" msgstr "" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Açqıç bilgelänmäde!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Tezeşlär" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Tezü cayı" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 #, fuzzy msgid "Comment" msgstr "Açıqlama" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Töp açqıç beterelde" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" digän tezeş salındı" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3073,12 +3073,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Biremleklär" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3149,19 +3149,19 @@ msgstr "Qullanuçı" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Binar köndälek" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Üzgärmälär" @@ -3299,8 +3299,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksí" @@ -3310,11 +3310,11 @@ msgstr "Funksí" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Bäyä" @@ -3324,68 +3324,68 @@ msgstr "Bäyä" msgid "Table Search" msgstr "Ezläw" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Östäw" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Alannar saylísı (iñ kimendä ber):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Bit sayın Kertem sanı" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Kürsätü tärtibe:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy msgid "Additional search criteria" msgstr "SQL-soraw" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy msgid "How to use" msgstr "PHP Söreme" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3460,14 +3460,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3719,7 +3719,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Tüşämä" @@ -3733,12 +3733,12 @@ msgstr "Tüşämä" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Eçtälek" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Overhead" @@ -3848,7 +3848,7 @@ msgstr "" msgid "Closed" msgstr "Yabılmağan cäyä" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3996,22 +3996,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Awdar" @@ -4294,7 +4294,7 @@ msgstr "Şul biremneñ bilgelämäse:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Tözeleş" @@ -4418,7 +4418,7 @@ msgstr "Açqıç yazması" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME-törläre" @@ -4459,7 +4459,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Tüşämä/alan isemnären kirequote eçenä salası" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL, kileşterü ısulı" @@ -5989,10 +5989,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6247,7 +6247,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6255,48 +6255,56 @@ msgid "" "configured)." msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Bu server endäşmi" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Sersüz üzgärtü" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Sersüzsez" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Qabatla" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Sersüz Hash'law" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6454,8 +6462,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6544,75 +6552,75 @@ msgstr "Server söreme" msgid "authored on %1$s by %2$s" msgstr "Server söreme" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Yöklänğan birem tözeleşe" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL servergä totaşılıp bulmadı" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format msgid "Importing into the database \"%s\"" msgstr "Biremleklär yuq" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format msgid "Importing into the table \"%s\"" msgstr "Biremleklär yuq" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Yöklise birem" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6694,71 +6702,71 @@ msgstr "" "InnoDB üz tüşämä öçen alxäter belän açqıçlar urnaştırğanda bu olılıqta " "bulğan bufer qullana." -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB Torışı" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Bufer Pul Totılğanlığı" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "bit" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Buş bit sanı" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Üzgärtelgän bit" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Eçtälekle bitlär" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Buşatası bit" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Eştä bit" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Berketelgän bit" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Bufer Pul Terelege" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Uquğa soraw" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Yazuğa soraw" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Uñışsız uqu" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Yazğanda kötterü" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Uñışsız uqu, % öçen" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "Yazğanda kötterü, % öçen" @@ -6964,8 +6972,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6982,130 +6990,130 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format msgid "Go to database: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format msgid "Go to table: %s" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Export views" msgid "Go to view: %s" msgstr "Çığaru ısulı" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7157,7 +7165,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7451,7 +7459,7 @@ msgstr "Tüşämä köyläneşe" msgid "Rename table to" msgstr "Tüşämä adın üzgärtü" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Saqlaw Isulı" @@ -7575,8 +7583,8 @@ msgstr "%s siña İsäñme di" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7650,21 +7658,21 @@ msgstr "Atama/sersüzeñ yalğış buluına kürä ireşep bulmadı." msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "" @@ -7829,20 +7837,21 @@ msgstr "Barlıq MIME-törlär" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Ürçäw Zamanı" @@ -8088,7 +8097,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 #, fuzzy msgid "Table name" @@ -8351,7 +8360,7 @@ msgstr "PDF yaratu" msgid "Displaying Column Comments" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Browser transformation" @@ -8417,7 +8426,7 @@ msgstr "Saylanunı Töşer" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8428,8 +8437,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8450,31 +8459,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Üzgärmä" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server ID'e" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Törle qullanuçı" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8483,34 +8492,34 @@ msgstr "Törle qullanuçı" msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Sersüz Ürçetü" @@ -8575,7 +8584,7 @@ msgstr "" msgid "Event name" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Buldıq töre" @@ -8966,7 +8975,7 @@ msgstr "Bu biremlektä ber genä dä tüşämä yuq." msgid "There are no events to display." msgstr "Tüşämä tikşerü" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8976,7 +8985,7 @@ msgstr "Tüşämä tikşerü" msgid "The %s table doesn't exist!" msgstr "\"%s\" atlı tüşämä yuq äle!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9023,101 +9032,101 @@ msgstr "Üzençälek" msgid "Extra" msgstr "Östämä" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Yaña Bit yaratu" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Zihenle urnaştıru" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Tözätü öçen berär bit sayla" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Tüşämä Saylaw" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Tüşämä Saylaw" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Alan iseme" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Sırlı kürsät" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Tösle kürsät" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Tüşämä ülçämen kürsätü" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "display all Tables with same width?" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Yatqırıp" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Batırıp" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Yasalışı" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Qäğäz zuqlığı" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9125,7 +9134,7 @@ msgstr "" "The current Page has References to Tables that no longer exist. Would you " "like to delete those References?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Qullanuçı" @@ -9568,8 +9577,8 @@ msgstr "Qullanuçılar tezmä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 " @@ -9635,11 +9644,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -9720,10 +9729,10 @@ 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/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" @@ -9736,12 +9745,12 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" @@ -9773,14 +9782,14 @@ msgid "Column %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Töp" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Tezeş" @@ -9790,7 +9799,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Tulımäten" @@ -9818,7 +9827,7 @@ msgstr "Bäyläneşkä küzätü" msgid "Propose table structure" msgstr "Tüşämä tözeleşenä küzätü" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -9830,7 +9839,7 @@ msgstr "Kimendä berär alan kertäse." msgid "Add column" msgstr "%s alan östäw" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" @@ -9855,15 +9864,15 @@ msgstr "%s artınnan" msgid "Create an index on  %s columns" msgstr "%s alannan tezeş yaratu" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Kerem Nöfüse" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "üzgärüçän" @@ -9871,15 +9880,15 @@ msgstr "üzgärüçän" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Kerem ozınlığı" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Kerem olılığı" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9928,15 +9937,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Beleşmä" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Totılğan Alan" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Uñışlı" @@ -9976,7 +9985,7 @@ msgstr "" msgid "Move column" msgstr "Add/Delete Field Columns" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -9985,11 +9994,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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10001,36 +10010,36 @@ msgstr "" "quote (\"'\") amongst those values, backslash it (for example '\\\\xyz' or 'a" "\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Buş" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "%s artınnan" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -10240,7 +10249,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Biremleklär yuq" @@ -10558,30 +10567,30 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 #, fuzzy msgid "Files" msgstr "Alan" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Köndälek adı" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Urın" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Tärtip buyınça urın" @@ -10589,31 +10598,31 @@ msgstr "Tärtip buyınça urın" msgid "Character Sets and Collations" msgstr "Bilgelämä & Tezü cayı" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" biremlegen beterü uñışlı uzdı." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Biremlek nöfüsläre" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Nöfüsne Cibärü" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10686,50 +10695,50 @@ msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10738,278 +10747,278 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 #, fuzzy msgid "Please select databases:" msgstr "Berär biremlek saylísı" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full start" msgstr "Tulımäten" -#: server_replication.php:355 +#: server_replication.php:382 #, fuzzy msgid "Full stop" msgstr "Tulımäten" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tözeleşen genä" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tözeleşen genä" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Eşkärtkeç" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Soraw alxätere" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Ceplär" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Çaqlı birem" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Kiçerelgän östäw" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Tezeş alxätere" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Bäylär" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Tezü" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Eş-ara idäräçese" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Tüşämälärne yabıp beteräse" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Soraw alxäteren awdar" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Eşläw Torışı" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Alannar sanı" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Yañart" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Alan" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Sersüzen üzgärtäse tügel" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Bäyläneşlär" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Soraw töre" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "Funksí" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11017,118 +11026,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Cömlä" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Bu MySQL-server %s eşli. %s çorında cibärelgän ide ul." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Alındı" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Ämer" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11136,78 +11145,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11215,7 +11224,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11223,43 +11232,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11267,33 +11276,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11302,92 +11311,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1506 +#: server_status.php:1505 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1509 +#: server_status.php:1508 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1515 +#: server_status.php:1514 #, fuzzy msgid "The number of physical writes to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1516 +#: server_status.php:1515 #, fuzzy msgid "The number of fsync() writes done to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11396,161 +11405,161 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Yöklänğan birem tözeleşe" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 #, fuzzy msgid "The number of physical writes of a key block to disk." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11558,99 +11567,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11658,18 +11667,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11677,71 +11686,71 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Tezeş alxätere" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şmb" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s alan östäw" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11750,7 +11759,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11758,18 +11767,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11777,11 +11786,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11789,99 +11798,99 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Biremlekne bolay atap quy" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tüşämä Saylaw" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Tüşämä adı yaraqsız" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy msgid "Add this series" msgstr "Yaña qullanuçı östäw" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy msgid "Series in Chart:" msgstr "SQL-soraw" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy msgid "Log statistics" msgstr "Kerem Nöfüse" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tüşämä Saylaw" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Soraw töre" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekund sayın" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12001,19 +12010,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Server üzgärmäläre & köyläneşe" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessi bäyäse" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Töp bäyä" @@ -12306,44 +12315,44 @@ msgstr "" msgid "Wrong data" msgstr "Biremleklär yuq" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL qaytarışı" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Ürçätkeç:" -#: sql.php:1147 +#: sql.php:1193 #, 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:1179 +#: sql.php:1225 msgid "Label" msgstr "Yarlıq" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12500,16 +12509,16 @@ msgstr "Bastıru küreneşe" msgid "Index name:" msgstr "Tezeş adı :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Tezeş töre :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Açqıçqa tağın  %s alan östise" @@ -12679,38 +12688,38 @@ msgstr "Çığaru ısulı" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server söreme" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 #, fuzzy msgid "Create version" msgstr "Server söreme" @@ -13077,8 +13086,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -13210,8 +13219,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/ug.po b/po/ug.po index 7ddbda33f8..67317450d9 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur \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: Weblate 1.2\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "بەت نومۇرى:" @@ -42,36 +42,36 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "ئىزدەش" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -79,28 +79,28 @@ msgstr "ئىزدەش" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "ئىجرا قىلىش" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "قىممەت ئىسمى" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "ئىزاھات" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" @@ -120,18 +120,18 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Database comment: " msgstr "ساندان ئىزاھاتى: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "سۆزلەم" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "سۆزلەم" msgid "Type" msgstr "تۈرى" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "تۈرى" msgid "Null" msgstr "بوش" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "بوش" msgid "Default" msgstr "ئەندىز" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "ئەندىز" msgid "Links to" msgstr "ئۇلانما" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "ئۇلانما" msgid "Comments" msgstr "ئىزاھلار" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "ئىزاھلار" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "يوق" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "يوق" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "بولدى" @@ -275,49 +275,49 @@ msgid "View dump (schema) of database" msgstr "ساندان قالدۇقىنى كۆرسىتىش" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "سانداندا جەدۋەل يوق" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "ھەممىنى تاللاش" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "تاللاشنى قالدۇرۇش" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "جەدۋەل" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "سەپ سانى" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "ھەجىم" @@ -347,7 +347,7 @@ msgstr "ئىشلىتىلمەكتە" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "قۇرۇش" @@ -355,7 +355,7 @@ msgstr "قۇرۇش" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" @@ -363,7 +363,7 @@ msgstr "ئاخىرقى يېڭلىنىش" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" @@ -377,7 +377,7 @@ msgstr[0] "%s جەدۋەل" msgid "You have to choose at least one column to display" msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "" @@ -411,9 +411,9 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "ساندان" @@ -431,66 +431,66 @@ msgstr "يېڭلاش" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "ھالەت" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "ئامال" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "كۆرسىتىش" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "پائال" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "پائالسىز" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "نەشىر" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "جەدۋەل ئىزلاش" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "ساندان خاتىرىسى" @@ -510,12 +510,12 @@ msgstr "چىقارماقچى بولغان ھۆججەت تۈرىنى تاللاڭ msgid "Bad parameters!" msgstr "دائىملىق" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "ھۆججەتنى ساقلاشقا يىتەرلىك بوشلۇق يوق %s。" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -528,7 +528,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوقۇقىڭىز يېتەرسىز." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." @@ -539,170 +539,173 @@ msgstr "%s ھۆججىتىدە ساقلاندى." msgid "Invalid export type" msgstr "چىقىرىش" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Routines" msgid "Add a point" msgstr "دائىملىق" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "مەجبۇرى قوشۇش" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add constraints" msgid "Add geometry" msgstr "مەجبۇرى قوشۇش" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "ھۆججەتنى ئوقۇيالمىدى" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, 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:400 +#: import.php:404 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:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "%d كىرگۈزىش غەلبىىك بولدى" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:513 +#: import.php:517 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.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى" @@ -716,7 +719,7 @@ msgstr "قايتىش" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." @@ -726,7 +729,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل msgid "Do you really want to execute \"%s\"?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -776,7 +779,7 @@ msgstr "تېزىسلار" msgid "Edit Index" msgstr "قىستۇرۇش" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %d column(s) to index" @@ -833,26 +836,26 @@ msgstr "" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "مۇلازىمىتېر تاللاش" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "SQL query" msgid "Live query chart" @@ -864,24 +867,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "يىغىندىسى" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -903,7 +906,7 @@ msgstr "مۇلازىمىتېر تاللاش" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -921,7 +924,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "" @@ -971,13 +974,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KiB" @@ -1035,32 +1038,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1078,11 +1081,11 @@ msgstr "%s جەدۋەل" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1107,12 +1110,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "يوق" @@ -1211,7 +1214,7 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1304,7 +1307,7 @@ msgstr "SQL ئىزاھى" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "ۋاقىت" @@ -1414,8 +1417,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "كىرگۈزۈش" @@ -1665,12 +1668,12 @@ msgstr "" msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1736,8 +1739,8 @@ msgstr "SQL سورىقى" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "" @@ -1845,7 +1848,7 @@ msgstr "تۈرلەش" msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "ھاسىللاش" @@ -1953,63 +1956,63 @@ msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "كۆنەك" @@ -2050,32 +2053,32 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "شەنبە" @@ -2191,16 +2194,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2217,7 +2220,7 @@ msgstr "ئەڭ چوڭ:%s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "قوللانما" @@ -2240,14 +2243,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "خاتالىق" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL سورىقى" @@ -2265,85 +2268,85 @@ msgstr "SQL سورىقى" msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "تاپشۇرۇش" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "يېڭلاش" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL دەلىللەش" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "يەكشەنبە" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "دائىملىق" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2351,28 +2354,28 @@ msgctxt "First page" msgid "Begin" msgstr "باشلا" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "كىيىنكى ئاي" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2380,108 +2383,108 @@ msgctxt "Last page" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "ساندان "%s" .غا ئۆتۈش" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "تۈزۈلىشى" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "كۆزەت" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "تازىلاش" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "يازدۇر" @@ -2498,104 +2501,104 @@ msgstr "" msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "ئارتىش" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "كېمىيىش" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "تۈرلەش" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "شەرت" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "رەت قوشۇش\\ئۆچۈرۈش" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "يېڭلاش" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "ياكى" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "ۋە" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "قىستۇرۇش" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "ئۆچۈرۈش" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "ئۆزگەرتىش" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "بارلىق سۆزلەر" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "ئېنىق ماسلىق" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "مۇنتىزىم ئىپادە" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" نىڭ ئىزلەش نەتىجىسى %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "جەمئىي: %s ئوخشاشلىق" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2603,49 +2606,49 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "ئۆچۈرۈش" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "سانداندىن ئىزدەش" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "ئىزدەشكە تىگىشلىك خەت ياكى قىقىممىتى(دەرىجىسى:«%»" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "تاپقىنى:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "ھەر بىر تاق سۆزنى (\" \") بەلگىسى ئارقىلىق ئايرىڭ." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" @@ -2696,8 +2699,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2776,7 +2779,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2795,8 +2798,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 @@ -2807,7 +2810,7 @@ msgstr "" msgid "total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2818,7 +2821,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "تاللانغىنى:" @@ -2828,8 +2831,8 @@ msgstr "تاللانغىنى:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "ھەممىنى تاللاش" @@ -2871,53 +2874,53 @@ msgstr "ئۇلىنىشنى تاپالمىدى" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "ئېشىپ كەتتى." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2926,68 +2929,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "index قىممىتى بەلگىلەنمىگەن!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "تېزىسلار" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "تۈپ سان" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "تاسقاش" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "ئىزاھات" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "ئۆچۈرۈلگەن تېزىسلار %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2996,12 +2999,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "ساندان" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "مۇلازىمىتېر" @@ -3069,18 +3072,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "كۆچۈرۈش" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3214,8 +3217,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3225,11 +3228,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3239,64 +3242,64 @@ msgstr "" msgid "Table Search" msgstr "ئىزدەش" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "قىستۇرۇش" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "SQL query" msgid "Additional search criteria" msgstr "SQL سورىقى" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "" @@ -3369,14 +3372,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3627,7 +3630,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "" @@ -3641,12 +3644,12 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "سانلىق مەلۇمات" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "ئېغىر يۈك" @@ -3754,7 +3757,7 @@ msgstr "" msgid "Closed" msgstr "" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3896,22 +3899,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "" @@ -4180,7 +4183,7 @@ msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "فورماتلاش" @@ -4294,7 +4297,7 @@ msgstr "ئاچقۇچلۇق ئېمزا" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIMEشەكلى" @@ -4332,7 +4335,7 @@ msgid "Enclose table and column names with backquotes" msgstr "" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" @@ -5796,10 +5799,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6061,7 +6064,7 @@ msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىن msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6069,48 +6072,56 @@ msgid "" "configured)." msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "مۇلازىمىتېردا ئىنكاس يوق" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "تەپسىلاتلار..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "پارولنى ئۆزگەرتىش" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "پارول يوق" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "قايتا كىرگۈزىش" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "پارول ھېسابلاش" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 بىلەن سەپلەش" @@ -6261,8 +6272,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6350,77 +6361,77 @@ msgstr "نەشىرنى قۇىماق" msgid "authored on %1$s by %2$s" msgstr "نەشىرنى قۇىماق" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "بىتەرەپ قىلىنىۋاتىدۇ، ساقلاڭ" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "يوللىنىۋاتىدۇ،تەپسىلىي ئۇچۇرى يوق،ساقلاڭ" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "Drop the database (DROP)" msgid "Importing into the database \"%s\"" msgstr "كۆچۈرۈلگەن ساندان" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "Drop the database (DROP)" msgid "Importing into the table \"%s\"" msgstr "كۆچۈرۈلگەن ساندان" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "ئەكىرىشكە تىگىشلىك ھۆججەت" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6500,71 +6511,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "بەت سانى" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "ئاق(قۇرۇق)بەت" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "كىرەكسىز(مەينەت)بەت" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "قۇرۇق ئەمەس بەت" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "يىڭىلايدىغان بەت" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "يۈك بەت" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "قۇلۇپلانغان بەت" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "ئۇقۇش تەلىپى" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "يېزىش تەلىپى" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "يېزىشنى كۈتۈۋاتقان سانى" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6755,8 +6766,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6773,125 +6784,125 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Create table on database %s" msgid "Go to database: %s" msgstr "ساندان %s غا جەدىۋەل قۇرۇش" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6939,7 +6950,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7230,7 +7241,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7348,8 +7359,8 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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/plugins/auth/AuthenticationConfig.class.php:121 @@ -7421,21 +7432,21 @@ msgstr "كىرگۈزگەن ئىسلەتكۈچى ئىسمى\\پارول خاتا msgid "Can not find signon authentication script:" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "قاتتىق دېتال تەكشۈرۈشتىن ئۆتمىدى." -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." @@ -7594,20 +7605,21 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "ئاساسىي ماشىنا" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "قۇرۇلغان ۋاقتى" @@ -7846,7 +7858,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8050,7 +8062,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8116,7 +8128,7 @@ msgstr "تاللاشنى بىكار قىلىش" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8127,8 +8139,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8148,31 +8160,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8181,34 +8193,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8275,7 +8287,7 @@ msgstr "تەپسىلاتلار..." msgid "Event name" msgstr "قىممەت ئىسمى" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8663,7 +8675,7 @@ msgstr "سانداندا جەدۋەل يوق" msgid "There are no events to display." msgstr "ئىزلانغان جەدۋەل" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8672,7 +8684,7 @@ msgstr "ئىزلانغان جەدۋەل" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8720,103 +8732,103 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "ھەممىنى تاللاش" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "رەڭنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "پەقەت كونوپكىنى كورسىتىش" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "توغرا يۈنىلىشتە" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "بوي يۈنىلىشتە" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "قۇرۇش" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "قەغەزنىڭ چوڭ-كىچىكلىكى" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9110,7 +9122,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -9246,8 +9258,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9304,11 +9316,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9390,7 +9402,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "%s جەدۋەل تازىلاندى" @@ -9403,12 +9415,12 @@ msgstr "ئاكتىپ ئىزلاش" msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" @@ -9436,14 +9448,14 @@ msgid "Column %s has been dropped" msgstr "" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -9453,7 +9465,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9481,7 +9493,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "" @@ -9489,7 +9501,7 @@ msgstr "" msgid "Add column" msgstr "" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9512,15 +9524,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9528,15 +9540,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9584,15 +9596,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9622,18 +9634,18 @@ msgstr "" msgid "Move column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9641,33 +9653,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9849,8 +9861,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: main.php:468 #, php-format @@ -9866,7 +9878,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -10167,29 +10179,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10197,31 +10209,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "ساندان %s ئۆچۈرۈلدى." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10291,49 +10303,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10342,267 +10354,267 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "تۈزىلىشىنىلا" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "تۈزىلىشىنىلا" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of columns" msgid "Number of data points: " msgstr "سۆزلەم سانى" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "يېڭلاش" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10610,115 +10622,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "بۇيرۇق" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10726,78 +10738,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10805,7 +10817,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10813,42 +10825,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10856,33 +10868,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10891,244 +10903,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11136,99 +11148,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11236,18 +11248,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11255,68 +11267,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "دائىملىق" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11325,7 +11337,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11333,18 +11345,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11352,11 +11364,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11364,98 +11376,98 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select All" msgid "Select series:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Routines" msgid "Add this series" msgstr "دائىملىق" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "سېكنۇت" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11573,19 +11585,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11871,42 +11883,42 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -12061,16 +12073,16 @@ msgstr "بېسىپ كۆرسىتىش" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12237,40 +12249,40 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "نەشىرنى قۇىماق" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "نەشىرنى قۇىماق" @@ -12637,8 +12649,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12769,8 +12781,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/uk.po b/po/uk.po index e1596e944d..bbbc5eef8b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-05-17 15:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"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: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Номер сторінки:" @@ -40,36 +40,36 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Шукати" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Шукати" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "Вперед" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Ім'я ключа" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Використовувати це значення" @@ -120,18 +120,18 @@ msgstr "Базу даних %1$s створено." msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Коментарі таблиці" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -139,18 +139,18 @@ msgstr "Коментарі таблиці" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Стовпчик" msgid "Type" msgstr "Тип" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Тип" msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Нуль" msgid "Default" msgstr "По замовчуванню" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "По замовчуванню" msgid "Links to" msgstr "Лінки до" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Лінки до" msgid "Comments" msgstr "Коментарі" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Коментарі" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Ні" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Ні" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Так" @@ -275,35 +275,35 @@ msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Відмітити все" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базу даних %s перейменовано в %s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базу даних %s скопійовано в %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -312,12 +312,12 @@ msgstr "" "Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, " "натисніть %sтут%s." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -327,14 +327,14 @@ msgstr "Таблиця" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Рядки" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Розмір" @@ -347,7 +347,7 @@ msgstr "використовується" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Створення" @@ -355,7 +355,7 @@ msgstr "Створення" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Останнє оновлення" @@ -363,7 +363,7 @@ msgstr "Останнє оновлення" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Перевірено" @@ -379,7 +379,7 @@ msgstr[2] "%s таблиць" msgid "You have to choose at least one column to display" msgstr "Необхідно вибрати принаймі один Стовпчик для показу" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "Перемкнутись на %sвізуальний конструктор%s" @@ -411,9 +411,9 @@ msgstr "Відслідковувані таблиці" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "БД" @@ -431,68 +431,68 @@ msgstr "Оновлено" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Статус" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Дія" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Показати" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Видалити дані спостереження для цієї таблиці" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Знищити" # активна -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "активний" # не активна -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "не активний" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Версії" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Звіт трекінгу (відстеження)" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Знімок структури" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Невідслідковувані таблиці" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Відслідковувати таблицю" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Журнал бази даних" @@ -508,12 +508,12 @@ msgstr "Обранний тип експорту збережений в фай msgid "Bad parameters!" msgstr "Невірні параметри!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -526,7 +526,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." @@ -535,119 +535,126 @@ msgstr "Dump збережено у файл %s." msgid "Invalid export type" msgstr "Невірний тип експорту" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "Значення для стовпчика \"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "Використовуйте OpenStreetMaps як базовий пласт" # Ідентифікатор просторової системи координат -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "Геометрія" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "Додати точку" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "Зовнішнє кільце" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "Внутрішнє кільце" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "Додати linestring" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "Додати внутрішнє кільце" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "Полігон" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "Додати полігон" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "Додати геометрію (geometry)" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "Вивід" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" "Оберіть \"ГеометріюЗТексту\" (\"GeomFromText\") із \"Функції\" стовпчика та " "вставте після рядка в поле \"Значення\"" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Ви напевно намагаєтесь завантажити занадто великий файл. Будь ласка " "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " "проблеми." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Показані закладки" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Неможливо прочитати файл" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -656,7 +663,7 @@ msgstr "" "Ви намагаєтесь завантажитит файл з непідтрумуваною компресією (%s). " "Підтримка якої не здійснюється або вимкнена у вашій конфігурації." -#: import.php:400 +#: import.php:404 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 " @@ -666,28 +673,28 @@ msgstr "" "файлу перевищив допустимий максимум для вашої PHP конфігурації. Дивіться " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Неможливо конвертувати кодування файлів без бібліотеки кодування" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше " "інсталювання!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створена" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпорт завершився успішно, %d запитів виконано." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -695,7 +702,7 @@ msgstr "" "Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." -#: import.php:513 +#: import.php:517 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." @@ -704,9 +711,9 @@ msgstr "" "phpMyAdmin не зможе закінчити цей імпорт якщо Ви на збільшите час виконання " "PHP скриптів." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "Ваш SQL-запит було успішно виконано" @@ -720,7 +727,7 @@ msgstr "Назад" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin є більш зручним в браузері з підтримкою фреймів." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." @@ -730,7 +737,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." msgid "Do you really want to execute \"%s\"?" msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!" @@ -770,7 +777,7 @@ msgstr "Додати Індекс" msgid "Edit Index" msgstr "Редагувати Індекс" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "Додати %d стовпчик(ів) до індексу" @@ -822,24 +829,24 @@ msgstr "Закрити" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Редагувати" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "Графік трафіку в реальному часі" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "Графік підкл./процесів в реальному часі" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "Графік запиту в реальному часі" @@ -849,24 +856,24 @@ msgstr "Статичні дані" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "Інше" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -886,7 +893,7 @@ msgstr "Трафік серверу (в KiB)" msgid "Connections since last refresh" msgstr "З'єднань на час останнього оновлення" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Процесів" @@ -904,7 +911,7 @@ msgstr "Questions на час останнього оновлення" msgid "Questions (executed statements by the server)" msgstr "Questions (виконані оператори сервером)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "Статистика запиту" @@ -950,13 +957,13 @@ msgstr "SWAP системи" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -1008,32 +1015,32 @@ msgstr "Байтів надіслано" msgid "Bytes received" msgstr "Байтів отримано" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "З'єднань" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1047,11 +1054,11 @@ msgstr "%d таблиця(таблиць)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "Налаштування" @@ -1072,12 +1079,12 @@ msgid "Please add at least one variable to the series" msgstr "Будь ласка додайте щонайменше одну змінну до ряду" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Жодного" @@ -1120,8 +1127,8 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" -"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за " -"%d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " +"slow_query_log ввімкнений, але сервер журналює тільки запити що є довші за %" +"d секунди. Рекомендовано встановити long_query_time 0-2 секунди, в " "залежності від вашої системи." #: js/messages.php:150 @@ -1177,7 +1184,7 @@ msgstr "Змінити налаштування" msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "Заголовок діаграми" @@ -1268,7 +1275,7 @@ msgstr "Тлумачити вихідні дані" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Час" @@ -1373,8 +1380,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імпорт" @@ -1596,12 +1603,12 @@ msgstr "Час виконання запиту" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Зберегти" @@ -1663,8 +1670,8 @@ msgstr "Результати запиту" msgid "Data point content" msgstr "Зміст" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Ігнорувати" @@ -1777,7 +1784,7 @@ msgstr "Показано записи " msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Згенерувати" @@ -1876,63 +1883,63 @@ msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Гру" @@ -1970,32 +1977,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Сб" @@ -2115,16 +2122,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "за секунду" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "за хвилину" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "за годину" @@ -2141,7 +2148,7 @@ msgstr "Максимум: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документація" @@ -2164,14 +2171,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Помилка" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL-запит" @@ -2189,106 +2196,106 @@ msgstr "SQL-запит" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "Не вдалося пид'єднатися до SQL валідатора!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "Виконати запит" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Оновити" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Перевірити SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "Рядкове редагування цього запиту" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "в рядок" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Профілювання" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "Пропущено параметр:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "Почати" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "Попередній" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "Вперед" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2296,105 +2303,105 @@ msgctxt "Last page" msgid "End" msgstr "Кінець" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "На функціональність %s впливає відома помилка, див. %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Структура" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Вставити" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Переглянути" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операцій" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "Немає файлів для завантаження" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Очистити" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "Виконати" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Друк" @@ -2413,98 +2420,98 @@ msgstr "" msgid "Font size" msgstr "Розмір шрифту" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Зростаючий" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Спадаючий" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Посортувати" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критерій" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "Додати/Прибрати рядки критеріїв" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "Додати/Прибрати колонки" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Доповнити запит" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Використовувати таблиці" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Або" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Та" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Вставити" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Видалити" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Змінити" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "принаймі одне з слів" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "всі слова" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "точну фразу" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "як регулярний вираз" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результати пошуку для \"%s\" %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -2512,7 +2519,7 @@ msgstr[0] "Всього: %s співпадіння" msgstr[1] "Всього: %s співпадань" msgstr[2] "Всього: %s співпадань" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2522,44 +2529,44 @@ msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" msgstr[2] "%s співпадінь у таблиці %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Видалити" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Шукати в базі даних" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова чи значення, які потрібно знайти (шаблон: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Знайти:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Слова розділені пробілом (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "Всередині таблиць:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "Всередині стовпчика:" @@ -2609,8 +2616,8 @@ msgstr "Виконати кожні" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2695,7 +2702,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Вбити" @@ -2712,11 +2719,11 @@ msgstr "по запиту" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." #: libraries/DisplayResults.class.php:4939 msgid "Showing rows" @@ -2726,7 +2733,7 @@ msgstr "Показано записи" msgid "total" msgstr "всього" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" @@ -2737,7 +2744,7 @@ msgstr "Запит виконувався %01.4f сек" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "З відміченими:" @@ -2747,8 +2754,8 @@ msgstr "З відміченими:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Відмітити все" @@ -2790,15 +2797,15 @@ msgstr "Лінк не знайдено" msgid "Too many error messages, some are not displayed." msgstr "Надто багато помилок, деякі не відобразились." -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "Файл не був завантаженим файлом." -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Завантажений файл перевищує директиву upload_max_filesize в php.ini." -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2806,27 +2813,27 @@ msgstr "" "Завантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в HTML " "формі." -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Завантажуваний файл був завантажений лише частково." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Відсутня тимчасова директорія." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Неможливо записати файл на диск." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Завантаження зупинено розширенням." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Невідома помилка при завантаженні файлу." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2834,11 +2841,11 @@ msgstr "" "Помилка прі переміщенні файлу, дивись [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "Помилка при переміщенні файлу." -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "Неможливо прочитати (перемістити) завантажений файл." @@ -2847,68 +2854,68 @@ msgstr "Неможливо прочитати (перемістити) зава msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Індекс не визначено!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Індекси" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Запакований" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Порівняння" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Коментар" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Первинний ключ було знищено" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "Індекс %s було знищено" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2919,12 +2926,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Бази Даних" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" @@ -2992,18 +2999,18 @@ msgstr "Користувачі" msgid "Synchronize" msgstr "Синхронізувати" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Бінарний журнал" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Реплікація" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Змінні" @@ -3142,8 +3149,8 @@ msgstr "" "оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура " "таблиці." -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функція" @@ -3153,11 +3160,11 @@ msgstr "Функція" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Значення" @@ -3167,68 +3174,68 @@ msgstr "Значення" msgid "Table Search" msgstr "Шукати" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Вставити" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Вибрати поля (щонайменше одне):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додати умови пошуку (тіло для умови \"where\"):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "записів на сторінці" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Порядок перегляду:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Сховати критерії пошуку" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3303,14 +3310,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3563,7 +3570,7 @@ msgstr "загальні" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Таблиць" @@ -3577,12 +3584,12 @@ msgstr "Таблиць" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Дані" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Надмірні видатки" @@ -3694,7 +3701,7 @@ msgstr "Відкрити" msgid "Closed" msgstr "Закрито" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3833,22 +3840,22 @@ msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" "Цей параметр відключений, він не буде застосовуватися до вашої конфігурації" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Встановити значення: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Відновити значення за замовчуванням" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "Дозволити користувачам налаштовувати це значення" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Перевстановити" @@ -4139,7 +4146,7 @@ msgstr "Кодування файлу" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4248,7 +4255,7 @@ msgstr "Ключ підпису" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME type" @@ -4284,7 +4291,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Візьміть таблицю та імена колонок у зворотні лапки" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "Режим сумісності SQL" @@ -5795,10 +5802,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6048,52 +6055,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Змінити пароль" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Без паролю" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Підтвердження" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6225,8 +6240,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6306,75 +6321,75 @@ msgstr "Загальні можливості" msgid "authored on %1$s by %2$s" msgstr "Загальні можливості" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Формат імпортованих файлів" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "Не можу зареєструватися на MySQL сервері" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the database \"%s\"" msgstr "БД відсутні" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "No databases" msgid "Importing into the table \"%s\"" msgstr "БД відсутні" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6452,71 +6467,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "Статус InnoDB" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6707,8 +6722,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6725,128 +6740,128 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "No databases" msgid "Go to database: %s" msgstr "БД відсутні" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Set value: %s" msgid "Go to table: %s" msgstr "Встановити значення: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Лише структуру" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Приховати" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Двійковий" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Через велику довжину,
це поле не може бути відредаговано " -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6894,7 +6909,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7183,7 +7198,7 @@ msgstr "Налаштування таблиці" msgid "Rename table to" msgstr "Перейменувати таблицю в" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7303,8 +7318,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -7381,21 +7396,21 @@ msgid "Can not find signon authentication script:" msgstr "Не вдаеться знайти скрипт аутентифікації:" # Файл %s не містить id ключа -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "Файл %s не містить ідентифікатора (id) ключа" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Апаратна аутентифікація не вдалася" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Не підключений валідний ключ аутентифікації" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Авторизуємося..." @@ -7552,20 +7567,21 @@ msgstr "Доступні MIME-types" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Час створення" @@ -7805,7 +7821,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8044,7 +8060,7 @@ msgstr "Створити PDF-файл" msgid "Displaying Column Comments" msgstr "Показувати коментарі стовпців" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" @@ -8114,7 +8130,7 @@ msgstr "Зняти усі відмітки" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Змінити або переконфігурувати головний сервер" @@ -8125,8 +8141,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8146,31 +8162,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Змінна" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "ID сервера" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Довільний користувач" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8179,34 +8195,34 @@ msgstr "Довільний користувач" msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Згенерувати пароль" @@ -8266,7 +8282,7 @@ msgstr "Деталі" msgid "Event name" msgstr "Назва події" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Тип події" @@ -8610,7 +8626,7 @@ msgstr "У базі даних %2$s немає події з назвою %1$s" msgid "There are no events to display." msgstr "Немає подій." -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8619,7 +8635,7 @@ msgstr "Немає подій." msgid "The %s table doesn't exist!" msgstr "Таблиця %s не існує!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8665,93 +8681,93 @@ msgstr "Атрибути" msgid "Extra" msgstr "Додатково" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Створити сторінку" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "Назва сторінки" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматичний layout" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Інтернаціональні зв'язки" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Будь ласка виберіть сторінку для редагування" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "Вибрати сторінку" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Вибрати Таблиці" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Назви колонок" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "Відобразити схему зв'язків" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Показати сітку" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Показати колір" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Показати розміри таблиць" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Показувати всі таблиці однакової ширини" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Словник даних" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Альбомний" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Звичайний" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "Орієнтація" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Формат паперу" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8759,7 +8775,7 @@ msgstr "" "Ця сторінка має посилання на таблицю, якої вже немає. Бажаєте видалити ці " "посилання?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "ввімкнути чорновик (scratchboard)" @@ -9065,7 +9081,7 @@ msgstr "Користувачі, котрі мають доступ до "%s #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Користувач" @@ -9209,8 +9225,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. Зміст цієї таблиці може відрізнятися від прав, які використовуються " @@ -9271,11 +9287,11 @@ msgstr "Очистити" msgid "Columns" msgstr "Колонки" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Надати всім користувачам доступ до цієї закладки" @@ -9372,7 +9388,7 @@ msgstr "" "Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані " "необхідні PHP extensions як описано в %sдокументації%s." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" @@ -9385,12 +9401,12 @@ msgstr "Трекінг є активним." msgid "Tracking is not active." msgstr "Трекінг не активний." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "Вигляд %s знищено" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" @@ -9421,14 +9437,14 @@ msgid "Column %s has been dropped" msgstr "Таблицю %s було знищено" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Первинний" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Індекс" @@ -9438,7 +9454,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "ПовнТекст" @@ -9466,7 +9482,7 @@ msgstr "Перегляд залежностей" msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9478,7 +9494,7 @@ msgstr "Необхідно вибрати принаймі один Стовпч msgid "Add column" msgstr "Додати коментар" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" @@ -9502,15 +9518,15 @@ msgstr "Після %s" msgid "Create an index on  %s columns" msgstr "Створити індекс на %s колонках" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Статистика рядка" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамічний" @@ -9518,15 +9534,15 @@ msgstr "динамічний" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Довжина рядка" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Розмір рядка" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9576,15 +9592,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Інформація" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Простір, що використовується" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Ефективність" @@ -9620,20 +9636,20 @@ msgstr "" msgid "Move column" msgstr "Додати коментар" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " -"%sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" +"sописи перетворень%s" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Опції перетворення" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9645,36 +9661,36 @@ msgstr "" "цих значеннях, поставте перед ними додатковий зворотній слеш (наприклад '\\" "\\xyz' чи 'a\\'b')." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Немає" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "Після %s" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9879,7 +9895,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "БД відсутні" @@ -10169,29 +10185,29 @@ msgstr "Файл не існує" msgid "Select binary log to view" msgstr "Вибрати двійковий журнал для перегляду" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файли" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Показати повні запити" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Назва журналу" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Позиція" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Початкова позиція" @@ -10199,7 +10215,7 @@ msgstr "Початкова позиція" msgid "Character Sets and Collations" msgstr "Набори символів та схеми" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -10208,24 +10224,24 @@ msgstr[0] "%s баз даних успішно знищено." msgstr[1] "%s баз даних успішно знищено." msgstr[2] "%s баз даних успішно знищено." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Статистика баз даних" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Головна реплікація" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Похідна реплікація" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Дозволити статистику" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10295,50 +10311,50 @@ msgstr "Права успішно перезавантажено." msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Права успішно перезавантажено." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10347,275 +10363,275 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Лише структуру" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Лише структуру" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "Інформація про роботу сервера" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "Число рядків:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Оновити" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не змінювати пароль" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "Показати таблиці" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "Показати таблиці" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Зв'язки" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тип запиту" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "Адміністратор" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10623,116 +10639,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Параметр" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "Цей MySQL сервер працює %s. Стартував %s." -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Отримано" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Відправлено" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Перервано" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Команда" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10740,78 +10756,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10819,7 +10835,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10827,42 +10843,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10870,33 +10886,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10905,244 +10921,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Character set of the file:" msgid "Percentage of used key cache (calculated value)" msgstr "Кодування файлу:" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11150,99 +11166,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11250,18 +11266,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11269,69 +11285,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Трекінг не активний." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "Додати коментар" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Оновити" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Column names" msgid "Chart columns" msgstr "Назви колонок" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11340,7 +11356,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11348,18 +11364,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11367,11 +11383,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11379,93 +11395,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Видалити базу даних" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Вибрати таблиці" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неправильна назва таблиці" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Додати нового користувача" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Статистика рядка" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Вибрати таблиці" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тип запиту" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11474,7 +11490,7 @@ msgstr[0] "Секунда" msgstr[1] "Секунда" msgstr[2] "Секунда" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11596,19 +11612,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Змінні сервера та налаштування" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Значення сесії" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Загальне значення" @@ -11896,44 +11912,44 @@ msgstr "" msgid "Wrong data" msgstr "БД відсутні" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL result" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Згенеровано" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Мітка" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12088,16 +12104,16 @@ msgstr "Режим редагування" msgid "Index name:" msgstr "Назва індекса :" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" повинно бути іменем лише первинного ключа!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Тип індекса :" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "Додати до індексу %s колоноку(и)" @@ -12268,40 +12284,40 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Видалити дані спостереження для цієї таблиці" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Загальні можливості" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12674,8 +12690,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12808,8 +12824,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -13763,8 +13779,8 @@ msgstr "concurrent_insert встановлений у 0" #~ "Query statistics: Since its startup, %s queries have been sent to " #~ "the server." #~ msgstr "" -#~ "Статистика запитів: З моменту запуску, до сервера було надіслано " -#~ "%s запитів." +#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %" +#~ "s запитів." #~ msgid "Chart generated successfully." #~ msgstr "Права успішно перезавантажено." diff --git a/po/ur.po b/po/ur.po index 4f4ec1592d..4f87731dfb 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-07-20 00:33+0200\n" "Last-Translator: dasatti \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: Weblate 1.1\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Show all" msgstr "تمام دکھائیں" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "صفحہ نمبر:" @@ -41,36 +41,36 @@ msgstr "" "مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند " "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "تلاش" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -78,28 +78,28 @@ msgstr "تلاش" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "جائیں" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "کلید نام" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "وضاحت" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "یہ قدر استعمال کریں" @@ -122,18 +122,18 @@ msgstr "ڈیٹا بیس %1$s بنا دیا گیا" msgid "Database comment: " msgstr "کوائفیہ تبصرہ: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -141,7 +141,7 @@ msgstr "جدول تبصرے" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -149,12 +149,12 @@ msgstr "جدول تبصرے" msgid "Column" msgstr "کالم" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -171,11 +171,11 @@ msgstr "کالم" msgid "Type" msgstr "قِسم" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -187,9 +187,9 @@ msgstr "قِسم" msgid "Null" msgstr "خالی" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -202,8 +202,8 @@ msgstr "خالی" msgid "Default" msgstr "طے شدہ" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -211,11 +211,11 @@ msgstr "طے شدہ" msgid "Links to" msgstr "ربط بطرف" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -224,12 +224,12 @@ msgstr "ربط بطرف" msgid "Comments" msgstr "تبصرہ" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -240,23 +240,23 @@ msgstr "تبصرہ" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "نہیں" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -268,8 +268,8 @@ msgstr "نہیں" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "ہاں" @@ -279,35 +279,35 @@ msgid "View dump (schema) of database" msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "تمام منتخب کریں" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "تمام انتخاب ختم کریں" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "کوائفیہ نام خالی ہے!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -316,12 +316,12 @@ msgstr "" "phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s " "کلک کریں۔" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -331,15 +331,15 @@ msgstr "جدول" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "صفیں" # db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "ناپ" @@ -352,7 +352,7 @@ msgstr "استعمال میں ہے" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "بنائیں" @@ -360,7 +360,7 @@ msgstr "بنائیں" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" @@ -368,7 +368,7 @@ msgstr "آخری دفعہ کی تازہ کاری" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" @@ -383,7 +383,7 @@ msgstr[1] "%s جداول" msgid "You have to choose at least one column to display" msgstr "آپ کو دکھانے کے لیے کم از کم ایک کالم چننا ہو گا" -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" @@ -416,9 +416,9 @@ msgstr "کھوج شدہ جداول" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "کوائفیہ" @@ -436,66 +436,66 @@ msgstr "تازہ کی گئی" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "حالت" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "عمل" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "دکھائیں" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "چھوڑیں" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "فعال نہیں ہے" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "نسخے" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "ساخت تصویر" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "بغیر کھوج جداول" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "جدول کھوج" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "کوائفیہ لاگ" @@ -515,12 +515,12 @@ msgstr "منتخب برآمد قسم اس مسل میں محفوظ ہو!" msgid "Bad parameters!" msgstr "کوائفیہ ہٹائیں" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "مسل %s محفوظ کرنے کے لیے ناکافی جگہ ہے۔" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -533,7 +533,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "اس مسل %s کو محفوظ کرنے کے لیے ویب سرور کے پاس اجازت نہیں ہے۔" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" @@ -544,126 +544,129 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" msgid "Invalid export type" msgstr "برآمد قسم" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "کالم کی قدریں\"%s\"" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a point" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "پابندیاں لگائیں" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a polygon" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a New User" msgid "Add geometry" msgstr "نیا صارف اضافہ کریں" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "ماحصل" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " -"%sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" +"sdocumentation%s دیکھیں۔" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "نشانی حذف ہوچکا ہے۔" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "مسل قابل مطالعہ نہیں ہے" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -672,7 +675,7 @@ msgstr "" "آپ نے غیر معاون سکڑاؤ (%s) کے ساتھ مسل لوڈ کرنے کی کوشش کی ہے۔ ممکن ہے کہ یہ " "معاونت لاگو نہیں ہے یا تشکیل میں نااہل کیا گیا ہے۔" -#: import.php:400 +#: import.php:404 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 " @@ -682,26 +685,26 @@ msgstr "" "سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں[a@./" "Documentation.html#faq1_16@Documentation]عمومی سوالات 1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "درآمد کامیابی سے مکمل ہوا, %d طلب چلائے۔" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -709,7 +712,7 @@ msgstr "" "سکرپٹ وقت ختم ہوا، اگر آپ درآمد مکمل کرنا چاہتے ہیں تو اسی مسل کو دوبارہ " "بھیجیں اور درآمد دوبارہ شروع ہوگا۔" -#: import.php:513 +#: import.php:517 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." @@ -717,9 +720,9 @@ msgstr "" "بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد " "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔" @@ -733,7 +736,7 @@ msgstr "واپس" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin ایک فریم صلاحیت والے براؤزر کے ساتھ زیادہ موزوں ہے۔" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" @@ -743,7 +746,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" msgid "Do you really want to execute \"%s\"?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -791,7 +794,7 @@ msgstr "اشاریے" msgid "Edit Index" msgstr "تدوین موڈ" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add/Delete Field Columns" msgid "Add %d column(s) to index" @@ -846,26 +849,26 @@ msgstr "بند کریں" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تدوین" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "سرور انتخاب" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "Hide query box" msgid "Live query chart" @@ -877,24 +880,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -916,7 +919,7 @@ msgstr "سرور انتخاب" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "" @@ -936,7 +939,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "طلب شماریات" @@ -986,13 +989,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "میگا بائٹ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "کلو بائٹ" @@ -1048,32 +1051,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "بائٹ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "گیگا بائٹ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ٹیرا بائٹ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "پیٹا بائٹ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ایگزا بائٹ" @@ -1091,11 +1094,11 @@ msgstr "%s جدول" msgid "Questions" msgstr "نسخے" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1120,12 +1123,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "" @@ -1224,7 +1227,7 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Default" msgid "Chart Title" @@ -1318,7 +1321,7 @@ msgstr "SQL کی تفصیل بتائیں" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "وقت" @@ -1430,8 +1433,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" @@ -1679,12 +1682,12 @@ msgstr "چلنے کی حد اوقات" msgid "%d is not valid row number." msgstr "" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "" @@ -1746,8 +1749,8 @@ msgstr "طلب نتائج" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "نظر انداز کریں" @@ -1856,7 +1859,7 @@ msgstr "ابتدائیہ" msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "بنائیں" @@ -1874,8 +1877,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " -"%s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" +"s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:373 @@ -1961,63 +1964,63 @@ msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "دسمبر" @@ -2058,32 +2061,32 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "ہفتہ" @@ -2199,16 +2202,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "" @@ -2225,7 +2228,7 @@ msgstr "زیادہ سے زیادہ: %s%s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "دستاویزات" @@ -2248,14 +2251,14 @@ msgid "en" msgstr "انگریزی" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "نقص" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL طلب" @@ -2273,83 +2276,83 @@ msgstr "SQL طلب" msgid "MySQL said: " msgstr "MySQL نے کہا: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "طلب بھیجیں" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "تازہ کریں" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL توثیق چھوڑیں" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL کی توثیق کریں" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "اس طلب کی ان لائن تدوین" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "تفصیلات" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "اتوار" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2357,28 +2360,28 @@ msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "پچھلا" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "اگلا" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2386,107 +2389,107 @@ msgctxt "Last page" msgid "End" msgstr "اختتام" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "کوائفیہ میں جائیں "%s"." -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "ساخت" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "داخل کریں" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "براؤز" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "عملیات" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "خالی" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "چھاپیں" @@ -2503,105 +2506,105 @@ msgstr "" msgid "Font size" msgstr "فانٹ سائز" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "صعودی" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "نزولی" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "چھانٹیں" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "کسوٹی" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "کسوٹی صفیں اضافہ/حذف کریں" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "کالم اضافہ/حذف کریں" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "طلب تازہ کریں" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "جداول استعمال کریں" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "یا" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "اور" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Ins" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Del" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "ترمیم" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "کوائفیہ کے لیے %s SQL طلب" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "کم از کم لفظوں میں سے ایک" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "تمام الفاظ" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "بعین فقرہ" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "بطور باقاعدہ اظہار" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "تلاش نتائج برائے \"%s\" %s" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "تمام: %s مشابہ" msgstr[1] "تمام: %s مشابہات" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2610,48 +2613,48 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "حذف" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "کوائفیہ میں تلاش کریں" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الفاظ یا قدروں کی تلاش برائے (wildcard: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "ڈھونڈیں:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "الفاظ ایک خالی حرف سے جدا جدا ہیں (\" \")." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "جدول میں:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "کالم میں:" @@ -2706,8 +2709,8 @@ msgstr "" msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2784,7 +2787,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "" @@ -2801,8 +2804,8 @@ msgstr "" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -2814,7 +2817,7 @@ msgstr "" msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "" @@ -2825,7 +2828,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "مع منتخب:" @@ -2835,8 +2838,8 @@ msgstr "مع منتخب:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "تمام پڑتال کریں" @@ -2878,42 +2881,42 @@ msgstr "" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "ایک عارضی پوشہ موجود نہیں ہے۔" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "ڈسک پر مسل تحریر ناکام ہوا۔" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2921,11 +2924,11 @@ msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation." "html#faq1_11@Documentation]عمومی سوالات 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2934,68 +2937,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "اس جگہ کوکی لازمی اہل ہوں۔" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "اس جگہ کوکی لازمی اہل ہوں۔" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "کوئی اشاریہ موجود نہیں!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "اشاریے" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "منفرد" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "درجہ تعلق داری" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "ترتیب" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "تبصرہ" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "بنیادی کلید چھوڑ دیا گیا ہے" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "اشاریہ %s چھوڑ دیا گیا ہے" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3006,12 +3009,12 @@ msgstr "" #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "کوائفیے" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "سرور" @@ -3079,18 +3082,18 @@ msgstr "" msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "چربہ کاری" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "" @@ -3227,8 +3230,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "" @@ -3238,11 +3241,11 @@ msgstr "" msgid "Operator" msgstr "" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "" @@ -3252,68 +3255,68 @@ msgstr "" msgid "Table Search" msgstr "تلاش" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "داخل کریں" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "تلاش کسوٹی چھپائیں" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "صارف کو کنٹرول کریں" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3388,14 +3391,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3648,7 +3651,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "جداول" @@ -3662,12 +3665,12 @@ msgstr "جداول" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "کوائف" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "مجموعی" @@ -3777,7 +3780,7 @@ msgstr "کھولیں" msgid "Closed" msgstr "بند ہوا" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3915,22 +3918,22 @@ msgstr "" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "ترتیب غیرفعال ہے، یہ آپ کے تشکیلات میں لاگوں نہیں ہوسکتی" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "قدر سیٹ کریں: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "طے شدہ قدر بحال کریں" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "دوبارہ سیٹ کریں" @@ -4217,7 +4220,7 @@ msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "وضع" @@ -4326,7 +4329,7 @@ msgstr "سرنامہ کلید" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME قسم" @@ -4362,7 +4365,7 @@ msgid "Enclose table and column names with backquotes" msgstr "جدول اور کالم نام کو الٹے کوٹ سے بند کریں" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL موازنت موڈ" @@ -5903,10 +5906,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6162,52 +6165,60 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "" -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "" @@ -6349,8 +6360,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:295 @@ -6426,73 +6437,73 @@ msgstr "جنرل ریلیشن فیچرز" msgid "authored on %1$s by %2$s" msgstr "جنرل ریلیشن فیچرز" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "درآمد مسل کی وضع" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "Copy database to" msgid "Importing into the database \"%s\"" msgstr "ڈیٹا بیس کاپی کریں" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "Copy database to" msgid "Importing into the table \"%s\"" msgstr "ڈیٹا بیس کاپی کریں" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6568,71 +6579,71 @@ msgid "" "tables." msgstr "" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "" @@ -6823,8 +6834,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -6843,127 +6854,127 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1192 -msgid "" -"The following structures have either been created or altered. Here you can:" -msgstr "" - -#: libraries/import.lib.php:1193 -msgid "View a structure's contents by clicking on its name" -msgstr "" - #: libraries/import.lib.php:1194 msgid "" -"Change any of its settings by clicking the corresponding \"Options\" link" +"The following structures have either been created or altered. Here you can:" msgstr "" #: libraries/import.lib.php:1195 +msgid "View a structure's contents by clicking on its name" +msgstr "" + +#: libraries/import.lib.php:1196 +msgid "" +"Change any of its settings by clicking the corresponding \"Options\" link" +msgstr "" + +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Jump to database" msgid "Go to database: %s" msgstr "کوائفیہ جائیں" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Count tables" msgid "Go to table: %s" msgstr "حداول کی گنتی کریں" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7013,7 +7024,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7302,7 +7313,7 @@ msgstr "" msgid "Rename table to" msgstr "" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "" @@ -7420,8 +7431,8 @@ msgstr "%s میں خوش آمدید" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -7496,21 +7507,21 @@ msgstr "غلط صارف نام/پاس ورڈ۔ ‏‏رسائی نہیں دی گ msgid "Can not find signon authentication script:" msgstr "" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "مسل %s کلید آئی ڈی کا حامل نہیں ہے" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "ہارڈویئر ‏‏توثيق ناکام ہوا" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "جائز توثیقی کلید پلگ نہیں ہے" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "توثیق کررہا ہے..." @@ -7653,20 +7664,21 @@ msgstr "" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "" @@ -7903,7 +7915,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "" @@ -8107,7 +8119,7 @@ msgstr "" msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "" @@ -8175,7 +8187,7 @@ msgstr "تمام غیر پڑتال کریں" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "" @@ -8186,8 +8198,8 @@ msgid "" msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8207,31 +8219,31 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8240,34 +8252,34 @@ msgstr "" msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "" @@ -8334,7 +8346,7 @@ msgstr "" msgid "Event name" msgstr "صفحہ نمبر" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "" @@ -8726,7 +8738,7 @@ msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" msgid "There are no events to display." msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8735,7 +8747,7 @@ msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" msgid "The %s table doesn't exist!" msgstr "" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8781,105 +8793,105 @@ msgstr "" msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "سارا منتخب کریں" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "دکھائیں PDF schema" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "گرِڈ دکھائیں" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "کلر دکھائیں" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "ٹیبلز کی جسامت دیکھیں" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "سارے ٹیبلز یکساں چوڑائی کے ساتھ دیکھیں" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "کوائف لغت" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "صرف کیز دیکھیں" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "لینڈسکیپ" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "پورٹریٹ" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "تخلیق" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "صفحے کا ناپ" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "" @@ -9171,7 +9183,7 @@ msgstr "" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "" @@ -9307,8 +9319,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 "" #: libraries/server_privileges.lib.php:3054 @@ -9367,11 +9379,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "" @@ -9453,7 +9465,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالی ہوچکا ہے" @@ -9466,12 +9478,12 @@ msgstr "کھوج فعال ہے۔" msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s چھوڑا جاچکا ہے" @@ -9500,14 +9512,14 @@ msgid "Column %s has been dropped" msgstr "Table %s has been dropped" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "" @@ -9517,7 +9529,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "" @@ -9545,7 +9557,7 @@ msgstr "" msgid "Propose table structure" msgstr "" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." @@ -9557,7 +9569,7 @@ msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے msgid "Add column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "" @@ -9580,15 +9592,15 @@ msgstr "" msgid "Create an index on  %s columns" msgstr "" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "" @@ -9596,15 +9608,15 @@ msgstr "" msgid "partitioned" msgstr "" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9652,15 +9664,15 @@ msgstr "" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "" @@ -9690,18 +9702,18 @@ msgstr "" msgid "Move column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9709,33 +9721,33 @@ msgid "" "'\\\\xyz' or 'a\\'b')." msgstr "" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, php-format msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "" @@ -9932,7 +9944,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "" @@ -10231,29 +10243,29 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "" @@ -10261,7 +10273,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -10269,24 +10281,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "کوائفیہ %s چھوڑ دیا گیا ہے۔" msgstr[1] "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10356,49 +10368,49 @@ msgstr "" msgid "Unknown error" msgstr "" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10407,271 +10419,271 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "سٹرکچر صرف" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "سٹرکچر صرف" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of inserted rows" msgid "Number of data points: " msgstr "داخل شدہ صفوں کی تعداد" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "تازہ کریں" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show logo in left frame" msgid "Show only alert values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show logo in left frame" msgid "Show unformatted values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "لپیٹنا" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Gather errors" msgid "Run analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10679,116 +10691,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." msgstr "" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "حکم" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10796,78 +10808,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." msgstr "" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." msgstr "" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10875,7 +10887,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10883,42 +10895,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10926,33 +10938,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." msgstr "" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10961,244 +10973,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." msgstr "" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "درآمد مسل کی وضع" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11206,99 +11218,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." msgstr "" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" msgstr "" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" msgstr "" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " "system variable." msgstr "" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11306,18 +11318,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." msgstr "" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11325,72 +11337,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "کھوج غیر فعال ہے۔" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ابتدائیہ" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "طے شدہ قدر بحال کریں" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11399,7 +11411,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11407,18 +11419,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11426,11 +11438,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11438,95 +11450,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "کوائفیہ ہٹائیں" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "SQL queries" msgid "Select series:" msgstr "SQL طلب" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "غلط جدول نام" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a New User" msgid "Add this series" msgstr "نیا صارف اضافہ کریں" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL طلب" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "طلب شماریات" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "سارا منتخب کریں" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Gather errors" msgid "Query analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11534,7 +11546,7 @@ msgid_plural "%d seconds" msgstr[0] "سیکنڈ" msgstr[1] "سیکنڈ" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11652,19 +11664,19 @@ msgid "" "database will remain unchanged." msgstr "" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "" @@ -11952,42 +11964,42 @@ msgstr "" msgid "Wrong data" msgstr "کوائف" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." @@ -12144,16 +12156,16 @@ msgstr "تدوین موڈ" msgid "Index name:" msgstr "" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12322,41 +12334,41 @@ msgstr "" msgid "Show versions" msgstr "" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "کوائف نہیں ملا برائے %s" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "جنرل ریلیشن فیچرز" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "" @@ -12722,8 +12734,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12856,8 +12868,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 diff --git a/po/uz.po b/po/uz.po index 3343ef3f74..3860d9ef39 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \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: Weblate 1.2\n" @@ -20,11 +20,11 @@ msgstr "" msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Саҳифа рақами:" @@ -38,36 +38,36 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Қидириш" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -75,28 +75,28 @@ msgstr "Қидириш" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Тавсифи" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" @@ -116,18 +116,18 @@ msgstr "%1$s маълумотлар базаси тузилди." msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -135,7 +135,7 @@ msgstr "Жадвал изоҳи" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -143,12 +143,12 @@ msgstr "Жадвал изоҳи" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -165,11 +165,11 @@ msgstr "Майдон номлари" msgid "Type" msgstr "Тур" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -181,9 +181,9 @@ msgstr "Тур" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -196,8 +196,8 @@ msgstr "Null" msgid "Default" msgstr "Андоза" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -205,11 +205,11 @@ msgstr "Андоза" msgid "Links to" msgstr "Алоқалар" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -218,12 +218,12 @@ msgstr "Алоқалар" msgid "Comments" msgstr "Изоҳлар" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -234,23 +234,23 @@ msgstr "Изоҳлар" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Йўқ" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -262,8 +262,8 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ҳа" @@ -273,35 +273,35 @@ msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Барчасини белгилаш" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -313,12 +313,12 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -328,14 +328,14 @@ msgstr "Жадвал" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Қаторларсони" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Ҳажми" @@ -348,7 +348,7 @@ msgstr "ишлатилмоқда" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Тузиш" @@ -356,7 +356,7 @@ msgstr "Тузиш" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Охирги янгиланиш" @@ -364,7 +364,7 @@ msgstr "Охирги янгиланиш" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Охирги текширув" @@ -380,7 +380,7 @@ msgstr[1] "Жадваллар сони: \"%s\"" msgid "You have to choose at least one column to display" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак." -#: db_qbe.php:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -415,9 +415,9 @@ msgstr "Кузатилган жадваллар" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Маълумотлар базаси" @@ -435,66 +435,66 @@ msgstr "Янгиланди" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Ҳолат" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Амал" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Кўрсатиш" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "Ўчириш" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "фаол" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "фаол эмас" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Тузилма расми" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Жадвални кузатиш" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "База лог файлини" @@ -514,12 +514,12 @@ msgstr "Белгиланган экспорт тури файлга сақлан msgid "Bad parameters!" msgstr "Индекс(лар)ни сақлаш" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -532,7 +532,7 @@ msgstr "" msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." @@ -543,127 +543,130 @@ msgstr "Дамп \"%s\" файлида сақланди." msgid "Invalid export type" msgstr "Жадвалларни экспорт қилиш" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Индекс(лар)ни сақлаш" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " -"%sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" +"sдокументацияда%s келтирилган." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -673,7 +676,7 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: import.php:400 +#: import.php:404 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 " @@ -684,28 +687,28 @@ msgstr "" "қийматдан катта. Қаранг: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -714,7 +717,7 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: import.php:513 +#: import.php:517 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." @@ -723,9 +726,9 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL сўрови муваффақиятли бажарилди" @@ -740,7 +743,7 @@ msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -750,7 +753,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -800,7 +803,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Edit Index" msgstr "Таҳрирлаш усули" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %d column(s) to index" @@ -859,26 +862,26 @@ msgstr "Ёпиш" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Серверни танланг" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -890,24 +893,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -929,7 +932,7 @@ msgstr "Серверни танланг" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Жараёнлар" @@ -949,7 +952,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1001,13 +1004,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "КБ" @@ -1069,32 +1072,32 @@ msgstr "" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Уланишлар" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "ЭБ" @@ -1111,11 +1114,11 @@ msgstr "Жадваллар сони: \"%s\"" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1142,12 +1145,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Йўқ" @@ -1247,7 +1250,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1343,7 +1346,7 @@ msgstr "Сўров таҳлили" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Вақт" @@ -1455,8 +1458,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1723,12 +1726,12 @@ msgstr "Максимум бажарилиш вақти" msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас!" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Сақлаш" @@ -1796,8 +1799,8 @@ msgstr "Сўров натижаларини ишлатиш" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "Эътибор бермаслик" @@ -1910,7 +1913,7 @@ msgstr "Қатор(лар)ни янгилаш" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Генерация қилиш" @@ -2040,27 +2043,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2068,37 +2071,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Дек" @@ -2147,32 +2150,32 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Шан" @@ -2309,16 +2312,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "секундига" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "минутига" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "соатига" @@ -2335,7 +2338,7 @@ msgstr "Максимал ҳажми: \"%s\"%s\"" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Документация" @@ -2358,14 +2361,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Хатолик" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL сўрови" @@ -2383,89 +2386,89 @@ msgstr "SQL сўрови" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "сўровни бажариш" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Янгилаш" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Профиллаштириш" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Якш" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Муолажалар" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2473,28 +2476,28 @@ msgctxt "First page" msgid "Begin" msgstr "Боши" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Орқага" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Кейинги" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2502,110 +2505,110 @@ msgctxt "Last page" msgid "End" msgstr "Охири" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" маълумотлар базасига ўтиш" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Тузилиши" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Қўйиш" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Кўриб чиқиш" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Операциялар" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Тозалаш" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Чоп этиш" @@ -2622,102 +2625,102 @@ msgstr "" msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "Ўсиш тартибида" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Камайиш тартибида" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Сортировка қилиш" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Критерий" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Қатор қўшиш/ўчириш" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Устун қўшиш/ўчириш" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "Сўровни янгилаш" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Жадвалларни ишлатиш" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Ёки" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Ва" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Қўйиш" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "Ўчириш" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "Ўзгаририш" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "сўзлардан бири" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "барча сўзлар" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "аниқ мослик" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "мунтазам ибора" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" учун қидирув натижалари \"%s\":" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2725,7 +2728,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Жами: \"%s\" ўхшашлик" msgstr[1] "Жами: \"%s\" ўхшашлик" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2733,49 +2736,49 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "Ўчириш" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Маълумотлар базасида қидириш" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Излаш:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Қуйидаги жадвал(лар)да қидириш:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2833,8 +2836,8 @@ msgstr "Белгиланган сўровни бажариш" msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2919,7 +2922,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Тугатиш" @@ -2938,8 +2941,8 @@ msgstr "сўров бўйича" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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 қаранг." @@ -2952,7 +2955,7 @@ msgstr "Ёзувларни кўрсатиш" msgid "total" msgstr "жами" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" @@ -2963,7 +2966,7 @@ msgstr "Сўров %01.4f секунд вақт олди" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Белгиланганларни:" @@ -2973,8 +2976,8 @@ msgstr "Белгиланганларни:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Барчасини белгилаш" @@ -3016,17 +3019,17 @@ msgstr "Алоқа топилмади" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта!" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3034,27 +3037,27 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта!" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -3062,11 +3065,11 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3075,68 +3078,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Индекс белгиланмаган!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Индекслар" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Таққослаш" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Изоҳ" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Бирламчи калит ўчирилди" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" индекси ўчирилди" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3145,12 +3148,12 @@ msgstr "%1$s ва %2$s индекслари бир хил, улардан бир #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Маълумотлар базалари" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" @@ -3220,18 +3223,18 @@ msgstr "Фойдаланувчи" msgid "Synchronize" msgstr "Синхронизация қилиш" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Иккилик журнал" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "Ўзгарувчилар" @@ -3376,8 +3379,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Функция" @@ -3387,11 +3390,11 @@ msgstr "Функция" msgid "Operator" msgstr "Оператор" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Қиймати" @@ -3401,72 +3404,72 @@ msgstr "Қиймати" msgid "Table Search" msgstr "Қидириш" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Қўйиш" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Майдонни танланг (камида битта):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Саҳифадаги қаторлар сони" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Сортировка:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Кўрсатиладиган қаторларнинг максимал сони" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" msgstr "SQL сўровлари қутиси" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "Назорат фойдаланувчиси" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3541,14 +3544,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3801,7 +3804,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Жадваллар" @@ -3815,12 +3818,12 @@ msgstr "Жадваллар" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Маълумотлар" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Фрагментланган" @@ -3943,7 +3946,7 @@ msgstr "" msgid "Closed" msgstr "Ёпиш" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4092,22 +4095,22 @@ msgstr "Вики" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Қуйидаги қийматни ўрнатиш: \"%s\"" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Асл қийматларни тиклаш" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Тозалаш" @@ -4420,7 +4423,7 @@ msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Формат" @@ -4543,7 +4546,7 @@ msgstr "Белги идентификатори" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME тури" @@ -4583,7 +4586,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Жадвал ва майдон номларини тескари қўштирноққа олиш" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL билан мослик режими" @@ -5821,8 +5824,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5929,8 +5932,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6263,10 +6266,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6551,7 +6554,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6559,50 +6562,58 @@ msgid "" "configured)." msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Сервер жавоб бермаяпти" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Тафсилотлар..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида " "кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Паролни ўзгартириш" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Парол йўқ" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Тасдиқлаш" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Паролни хешлаш" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6763,16 +6774,16 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:295 msgid "use this for future exports" @@ -6863,7 +6874,7 @@ msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини msgid "authored on %1$s by %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6873,35 +6884,35 @@ msgstr "" "асосланган браузерларнинг (Safari, Google Chrome, Arora ва ҳкз) маълум " "камчилиги." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Импорт қилинаётган файл формати" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Файл қайта ишланмоқда, илтимос, сабр қилинг." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6909,36 +6920,36 @@ msgstr "" "Сабр қилинг, файл юкланмоқда. Ушбу юкланиш ҳақида батафсил маълумот мавжуд " "эмас." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL серверига уланиб бўлмади" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "Go to database" msgid "Importing into the database \"%s\"" msgstr "Ушбу базага ўтиш" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "Go to database" msgid "Importing into the table \"%s\"" msgstr "Ушбу базага ўтиш" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Импорт қилинаётган файл " -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -7032,71 +7043,71 @@ msgstr "" "Маълумотларни ва жадвал индексларини кешлашда InnoDB ишлатадиган хотира " "буфери ҳажми" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB аҳволи" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Ишлатилиш" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "саҳифалар сони" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Бўш саҳифалар сони" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Кир саҳифалар" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Маълумотлар мавжуд саҳифалар" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Тозалаш керак бўлган саҳифалар сони" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Банд саҳифалар" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Блокировка қилинган саҳифалар сони" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Фаоллик" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "Ўқишга рухсат сўраш" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Ёзишга бўлган сўровлар сони" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Буферни ўқишда қолдиришлар мавжуд" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Буфернинг тозаланиши кутилмоқда" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Буферни ўқишда % қолдиришлар мавжуд" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "% буфернинг тозаланиши кутилмоқда" @@ -7330,8 +7341,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7348,138 +7359,138 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ушбу кўринишга ўтиш" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Яшириш" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Иккилик" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -7533,7 +7544,7 @@ msgstr "" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7828,7 +7839,7 @@ msgstr "Жадвал параметрлари" msgid "Rename table to" msgstr "Жадвал номини ўзгартириш" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Жадвал тури" @@ -7950,8 +7961,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 фойдаланишингиз мумкин." @@ -8032,21 +8043,21 @@ msgstr "Киритилган маълумотлар нотўғри. Кириш msgid "Can not find signon authentication script:" msgstr "Аутентификация усули учун логин танловларини киритиш" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "\"%s\" файлида калит идентификатори мавжуд эмас" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Ускунавий аутентификация муваффақиятсиз якунланди" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "Тўғри аутентификация калити уланмаган" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Aутентификация..." @@ -8211,20 +8222,21 @@ msgstr "Мавжуд MIME турлари" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Тузилган сана" @@ -8471,7 +8483,7 @@ msgstr "" "Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Жадвал номи" @@ -8771,7 +8783,7 @@ msgstr "PDF-схема тузиш" msgid "Displaying Column Comments" msgstr "Майдон изоҳларини кўрсатиш" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "Ўгириш" @@ -8847,7 +8859,7 @@ msgstr "Белгилашни бекор қилиш" msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" @@ -8861,8 +8873,8 @@ msgstr "" "қўшинг:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8882,15 +8894,15 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "Ўзгарувчи" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Сервер ID си" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8898,17 +8910,17 @@ msgstr "" "Рўйхатда фақат \"--report-host=host_name\" танлови ёрдамда юкланган тобе " "серверлар кўрсатилмоқда." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8917,27 +8929,27 @@ msgstr "Ҳар қайси фойдаланувчи" msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8946,7 +8958,7 @@ msgstr "" "Агар Хостлар жадвалидан фойдаланилса, ушбу майдонга эътибор берилмайди ва " "унинг ўрнига Хостлар жадвалидаги қийматлар ишлатилади." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Парол ўрнатиш" @@ -9016,7 +9028,7 @@ msgstr "Тафсилотлар..." msgid "Event name" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Ҳодиса тури" @@ -9426,7 +9438,7 @@ msgstr "Маълумотлар базасида биронта ҳам жадва msgid "There are no events to display." msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9436,7 +9448,7 @@ msgstr "Биронта ҳам конфигурацияланган сервер msgid "The %s table doesn't exist!" msgstr "\"%s\" жадвали мавжуд эмас!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9485,101 +9497,101 @@ msgstr "Атрибутлар" msgid "Extra" msgstr "Қўшимча" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Янги саҳифа тузиш" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматик раскладка" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Ички алоқалар" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Жадвалларни танланг" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Жадвалларни танланг" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Майдон номлари" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Алоқалар схемаси" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "Тўрни кўрсатиш" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Рангда кўрсатиш" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Жадвал ўлчамларини кўрсатиш" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Бир хил кенгликдаги барча жадвалларни кўрсатиш" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Маълумотлар луғати" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Фақат калитларни кўрсатиш" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Албом шаклида" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Китоб шаклида" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Тузиш" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Қоғоз ўлчами" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9587,7 +9599,7 @@ msgstr "" "Ушбу саҳифада мавжуд бўлмаган жадваллар учун мурожаатлар мавжуд. Ушбу " "мурожаатларни ўчиришни хоҳлайсизми?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Кўрсатиш" @@ -9905,7 +9917,7 @@ msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Фойдаланувчи" @@ -10050,8 +10062,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 привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -10114,11 +10126,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -10213,7 +10225,7 @@ msgstr "" "SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " "ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" @@ -10226,12 +10238,12 @@ msgstr "Кузатиш фаол." msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" намойиши ўчирилди" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" @@ -10264,14 +10276,14 @@ msgid "Column %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Бирламчи" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Индекс" @@ -10281,7 +10293,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Матн тўлалигича" @@ -10309,7 +10321,7 @@ msgstr "Алоқаларни кўриш" msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -10321,7 +10333,7 @@ msgstr "Ҳеч бўлмаганда битта майдон киритиш ша msgid "Add column" msgstr "Устун(лар) қўшиш" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" @@ -10346,15 +10358,15 @@ msgstr "\"%s\" дан кейин" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "статик" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "динамик" @@ -10362,15 +10374,15 @@ msgstr "динамик" msgid "partitioned" msgstr "бўлакларга бўлинган" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Қатор узунлиги" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Қатор ҳажми" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10424,15 +10436,15 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Маълумот" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Эффективлик" @@ -10474,7 +10486,7 @@ msgstr "" msgid "Move column" msgstr "Устун(лар)ни олиб ташлаш" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10483,11 +10495,11 @@ msgstr "" "Мавжуд MIME турлари ва ўгиришлар параметларини кўриш учун қуйидаги " "боғланишдан фойдаланинг: - \"%s\"ўзгариришлар тавсифи\"%s\"" -#: libraries/tbl_properties.inc.php:144 +#: libraries/tbl_properties.inc.php:145 msgid "Transformation options" msgstr "Ўгиришлар параметрлари" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10499,36 +10511,36 @@ msgstr "" "белгилари олдидан тескари эгри чизиқ бўлиши керак, масалан: \"\\\\xyz\" ёки " "\"a\\\"b\"." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Йўқ" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Қоидага кўра:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "\"%s\" дан кейин" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" @@ -10769,7 +10781,7 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" @@ -11090,29 +11102,29 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Файллар сони" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Журнал файли" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Позиция" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Асл позиция" @@ -11120,31 +11132,31 @@ msgstr "Асл позиция" msgid "Character Sets and Collations" msgstr "Кодировкалар ва таққослашлар" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" маълумотлар базаси муваффақиятли ўчирилди." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Маълумотлар базаси статискаси" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Бош сервер репликацияси" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Статискани ёқиш" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -11216,41 +11228,41 @@ msgstr "Привилегиялар муваффақиятли қайта юкл msgid "Unknown error" msgstr "Номаълум хатолик" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "%s бош серверига уланиб бўлмади." -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Бош сервер позициясини ўқиб бўлмади. Сервердаги привилегиларда муаммо бўлиши " "мумкин." -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Бош серверни ўзгартириб бўлмади" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Бош репликация сервери қуйидагига ўзгартирилди: %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11259,11 +11271,11 @@ msgstr "" "Ушбу сервер репликация жараёнида \"бош сервер\" деб конфигурация қилинмаган. " "Сиз уни конфигурация қилмоқчимисиз?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Бош сервер конфигурацияси" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -11277,19 +11289,19 @@ msgstr "" "бермаслик ва баъзиларини репликация қилишни (бир нечта базаларнигина " "репликация қилишда фойдали) танлашингиз мумкин. Репликация усулини танланг:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Барча базаларни репликация қилиш; Қуйидагилардан ташқари:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Барча базаларга эътибор бермаслик; Қуйидагилардан ташқари:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Базаларни танланг:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11297,7 +11309,7 @@ msgstr "" "Энди қуйидаги қаторларни \"my.cnf\" файлининг охирига қўшинг ва MySQL " "серверини қайта юкланг." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -11307,74 +11319,74 @@ msgstr "" "ушбу сервер \"бош сервер\" деб конфигурация қилинганлиги ҳақидаги маълумотни " "кўришингиз керак." -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Тобе SQL Оқими ишламаяпти!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Тобе кириш/чиқиш оқими ишламаяпти!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация қилинган. " "Қуйидаги амаллардан бирини танланг:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Базаларни бош сервер билан синхронизация қилиш" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Тобе серверни назорат қилиш:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Барчасини бошлаш" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Барчасини тўхтатиш" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Тобе серверни тиклаш" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: server_replication.php:360 +#: server_replication.php:387 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: server_replication.php:365 +#: server_replication.php:392 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Хатоликларни бошқариш:" -#: server_replication.php:372 +#: server_replication.php:399 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -11382,19 +11394,19 @@ msgstr "" "Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация " "қилинмаганлигига олиб келиши мумкин!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Жорий хатоликларни ташлаб кетиш" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Кейингисини ташлаб кетиш" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "хатоликлар." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11403,169 +11415,169 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" жараёни муваффақиятли якунланди." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Қайта ишловчи дастур" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "Сўровлар кеши" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Оқимлар" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Вақтинчалик маълумотлар" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Кечиктирилган қўйилмалар" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Индекс кеши" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Бирлашишлар" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Транзакциялар координатори" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Барча жадвалларни ёпиш" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "Сўровлар кешини дефрагментация қилиш" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "MySQL-сервернинг ҳозирги ҳолати" -#: server_status.php:810 +#: server_status.php:809 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Майдонлар сони " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Янгилаш" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Фильтр" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Паролни ўзгартирмаслик" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Алоқалар" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Сўров тури" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функциялар" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11573,33 +11585,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Бошланғич саҳифани созлаш" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Тавсиф" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "MySQL-сервер \"%s\" давомида ишламоқда. Ишга туширилган вақт: \"%s\"." -#: server_status.php:1111 +#: server_status.php:1110 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11607,19 +11619,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1113 +#: server_status.php:1112 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1115 +#: server_status.php:1114 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1118 +#: server_status.php:1117 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11633,11 +11645,11 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11645,47 +11657,47 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Юборилди" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Узилди" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Буйруқ" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-серверга уланиб бўлмади" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11694,16 +11706,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11716,11 +11728,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11728,7 +11740,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11736,31 +11748,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Бажариладиган \"INSERT DELAYED\" сўровлар сони." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11770,7 +11782,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11779,7 +11791,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11788,7 +11800,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11798,7 +11810,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11807,7 +11819,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11820,7 +11832,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11832,35 +11844,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11870,7 +11882,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11882,11 +11894,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11895,7 +11907,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11904,12 +11916,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11917,7 +11929,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11930,51 +11942,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -11982,35 +11994,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -12019,51 +12031,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -12071,7 +12083,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -12079,7 +12091,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -12088,17 +12100,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12109,26 +12121,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -12139,19 +12151,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -12159,42 +12171,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" -"()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12206,7 +12218,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -12214,19 +12226,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -12234,13 +12246,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -12249,7 +12261,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -12258,17 +12270,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -12276,13 +12288,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -12290,12 +12302,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -12305,25 +12317,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12335,7 +12347,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -12346,11 +12358,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12362,74 +12374,74 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Бошлаш" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Индекс(лар)ни сақлаш" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR майдонидаги устунлар сони" -#: server_status.php:1786 +#: server_status.php:1785 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Хатоликларни бошқариш:" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Асл қийматларни тиклаш" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12438,7 +12450,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12446,18 +12458,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12465,11 +12477,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12477,104 +12489,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: server_status.php:1841 +#: server_status.php:1840 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Жадвалларни танланг" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Жадвал номи нотўғри" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Янги фойдаланувчи қўшиш" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL сўровлари" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Статискани кўрсатиш" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Жадвалларни танланг" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Сўров тури" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "секундига" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12696,19 +12708,19 @@ msgstr "" "Нишон база манба база билан тўлиқ синхронизация қилинади. Манба база " "ўзгаришсиз қолади." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Сервер ўзгарувчилари ва созланишлари" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Сессия қийматлари" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Глобал қиймат" @@ -13102,44 +13114,44 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус msgid "Wrong data" msgstr "Маълумотлар базаси мавжуд эмас" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Тузилган" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Хатчўп белгиси" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -13304,16 +13316,16 @@ msgstr "Таҳрирлаш усули" msgid "Index name:" msgstr "Индекс номи:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" номи фақат бирламчи индексгаэга бўлиши шарт!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Индекс тури:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "\"%s\" майдон(лар)ини индексга қўшиш" @@ -13498,41 +13510,41 @@ msgstr "\"%s\" деб экспорт қилиш" msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Версиясини тузиш" @@ -13903,8 +13915,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -14039,8 +14051,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -15151,8 +15163,8 @@ msgstr "Максимал уланишлар сони " #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Тахминий бўлиши мумкин. [a@./Documentation." -#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг" +#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]" +#~ "\"FAQ 3.11\"[/a]га қаранг" #~ msgid "Add a New User" #~ msgstr "Янги фойдаланувчи қўшиш" diff --git a/po/uz@latin.po b/po/uz@latin.po index aceb96f316..94cc681929 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-28 14:41+0200\n" "Last-Translator: Michal Čihař \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "Sahifa raqami:" @@ -40,36 +40,36 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "Qidirish" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -77,28 +77,28 @@ msgstr "Qidirish" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "OK" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "Indeks nomi" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "Tavsifi" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" @@ -118,18 +118,18 @@ msgstr "%1$s ma`lumotlar bazasi tuzildi." msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -137,7 +137,7 @@ msgstr "Jadval izohi" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 #, fuzzy @@ -145,12 +145,12 @@ msgstr "Jadval izohi" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -167,11 +167,11 @@ msgstr "Maydon nomlari" msgid "Type" msgstr "Tur" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -183,9 +183,9 @@ msgstr "Tur" msgid "Null" msgstr "Null" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -198,8 +198,8 @@ msgstr "Null" msgid "Default" msgstr "Andoza" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -207,11 +207,11 @@ msgstr "Andoza" msgid "Links to" msgstr "Aloqalar" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -220,12 +220,12 @@ msgstr "Aloqalar" msgid "Comments" msgstr "Izohlar" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -236,23 +236,23 @@ msgstr "Izohlar" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "Yo‘q" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -264,8 +264,8 @@ msgstr "Yo‘q" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "Ha" @@ -275,35 +275,35 @@ msgid "View dump (schema) of database" msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "Barchasini belgilash" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:129 +#: db_operations.php:130 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:256 +#: db_operations.php:260 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -315,12 +315,12 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -330,14 +330,14 @@ msgstr "Jadval" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "Qatorlarsoni" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "Hajmi" @@ -350,7 +350,7 @@ msgstr "ishlatilmoqda" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "Tuzish" @@ -358,7 +358,7 @@ msgstr "Tuzish" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "Oxirgi yangilanish" @@ -366,7 +366,7 @@ msgstr "Oxirgi yangilanish" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "Oxirgi tekshiruv" @@ -382,7 +382,7 @@ msgstr[1] "Jadvallar soni: \"%s\"" 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:59 +#: db_qbe.php:60 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" @@ -417,9 +417,9 @@ msgstr "Kuzatilgan jadvallar" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -437,66 +437,66 @@ msgstr "Yangilandi" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "Holat" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "Amal" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "Ko‘rsatish" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "O‘chirish" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "faol" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "faol emas" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "Jadvalni kuzatish" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "Baza log faylini" @@ -516,12 +516,12 @@ msgstr "Belgilangan eksport turi faylga saqlanishi shart!" msgid "Bad parameters!" msgstr "Indеks(lar)ni saqlash" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -534,7 +534,7 @@ msgstr "" 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:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." @@ -545,127 +545,130 @@ msgstr "Damp \"%s\" faylida saqlandi." msgid "Invalid export type" msgstr "Jadvallarni eksport qilish" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Indеks(lar)ni saqlash" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Ustun(lar) qo‘shish" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "Xatcho‘p o‘chirildi." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -675,7 +678,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:400 +#: import.php:404 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 " @@ -686,28 +689,28 @@ msgstr "" "qiymatdan katta. Qarang: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 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:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -716,7 +719,7 @@ msgstr "" "unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon " "uzilgan joydan boshlab davom etadi." -#: import.php:513 +#: import.php:517 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." @@ -725,9 +728,9 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "SQL so‘rovi muvaffaqiyatli bajarildi" @@ -743,7 +746,7 @@ msgstr "" "phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer " "kerak." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." @@ -754,7 +757,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -805,7 +808,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Edit Index" msgstr "Tahrirlash usuli" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %d column(s) to index" @@ -864,26 +867,26 @@ msgstr "Yopish" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serverni tanlang" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -895,24 +898,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "," @@ -934,7 +937,7 @@ msgstr "Serverni tanlang" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "Jarayonlar" @@ -954,7 +957,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1006,13 +1009,13 @@ msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1074,32 +1077,32 @@ msgstr "" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "Ulanishlar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1116,11 +1119,11 @@ msgstr "Jadvallar soni: \"%s\"" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1147,12 +1150,12 @@ msgid "Please add at least one variable to the series" msgstr "" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "Yo‘q" @@ -1252,7 +1255,7 @@ msgstr "Boshqa sozlanishlar" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1348,7 +1351,7 @@ msgstr "So‘rov tahlili" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "Vaqt" @@ -1460,8 +1463,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1730,12 +1733,12 @@ msgstr "Maksimum bajarilish vaqti" msgid "%d is not valid row number." msgstr "%d soni to‘g‘ri qator raqami emas!" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "Saqlash" @@ -1803,8 +1806,8 @@ msgstr "So‘rov natijalarini ishlatish" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "E`tibor bermaslik" @@ -1918,7 +1921,7 @@ msgstr "Qator(lar)ni yangilash" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "Generatsiya qilish" @@ -2048,27 +2051,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2076,37 +2079,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "Dek" @@ -2155,32 +2158,32 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "Shan" @@ -2318,16 +2321,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "sekundiga" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "minutiga" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "soatiga" @@ -2344,7 +2347,7 @@ msgstr "Maksimal hajmi: \"%s\"%s\"" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "Dokumentatsiya" @@ -2367,14 +2370,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "Xatolik" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2392,89 +2395,89 @@ msgstr "SQL so‘rovi" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "so‘rovni bajarish" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "Yangilash" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "Profillashtirish" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "Yaksh" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Muolajalar" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2482,28 +2485,28 @@ msgctxt "First page" msgid "Begin" msgstr "Boshi" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" msgid "Previous" msgstr "Orqaga" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "Keyingi" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2511,110 +2514,110 @@ msgctxt "Last page" msgid "End" msgstr "Oxiri" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, 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/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "Tuzilishi" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "Qo‘yish" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "Ko‘rib chiqish" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "Tozalash" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "Chop etish" @@ -2631,102 +2634,102 @@ msgstr "" msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "O‘sish tartibida" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "Kamayish tartibida" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "Sortirovka qilish" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "Kriteriy" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Qator qo‘shish/o‘chirish" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Ustun qo‘shish/o‘chirish" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "So‘rovni yangilash" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "Jadvallarni ishlatish" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "Yoki" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "Va" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "Qo‘yish" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "O‘chirish" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "O‘zgarirish" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "so‘zlardan biri" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "barcha so‘zlar" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "aniq moslik" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "muntazam ibora" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" uchun qidiruv natijalari \"%s\":" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -2734,7 +2737,7 @@ msgid_plural "Total: %s matches" msgstr[0] "Jami: \"%s\" o‘xshashlik" msgstr[1] "Jami: \"%s\" o‘xshashlik" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match in %2$s" @@ -2742,50 +2745,50 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "O‘chirish" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "Ma`lumotlar bazasida qidirish" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" "Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "Izlash:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan." -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Quyidagi jadval(lar)da qidirish:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" @@ -2843,8 +2846,8 @@ msgstr "Belgilangan so‘rovni bajarish" msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2929,7 +2932,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "Tugatish" @@ -2938,8 +2941,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/DisplayResults.class.php:4889 msgid "in query" @@ -2948,8 +2951,8 @@ msgstr "so‘rov bo‘yicha" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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." @@ -2962,7 +2965,7 @@ msgstr "Yozuvlarni ko‘rsatish" msgid "total" msgstr "jami" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" @@ -2973,7 +2976,7 @@ msgstr "So‘rov %01.4f sekund vaqt oldi" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "Belgilanganlarni:" @@ -2983,8 +2986,8 @@ msgstr "Belgilanganlarni:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "Barchasini belgilash" @@ -3026,17 +3029,17 @@ msgstr "Aloqa topilmadi" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 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:276 +#: libraries/File.class.php:282 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -3044,27 +3047,27 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta!" -#: libraries/File.class.php:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -3072,11 +3075,11 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -3085,68 +3088,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "Indeks belgilanmagan!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "Indekslar" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "Taqqoslash" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "Izoh" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "Birlamchi kalit o‘chirildi" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "\"%s\" indeksi o‘chirildi" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -3155,12 +3158,12 @@ msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "Ma`lumotlar bazalari" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "Server" @@ -3230,18 +3233,18 @@ msgstr "Foydalanuvchi" msgid "Synchronize" msgstr "Sinxronizatsiya qilish" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "Ikkilik jurnal" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "O‘zgaruvchilar" @@ -3386,8 +3389,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "Funksiya" @@ -3397,11 +3400,11 @@ msgstr "Funksiya" msgid "Operator" msgstr "Operator" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "Qiymati" @@ -3411,72 +3414,72 @@ msgstr "Qiymati" msgid "Table Search" msgstr "Qidirish" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "Qo‘yish" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Maydonni tanlang (kamida bitta):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "Sahifadagi qatorlar soni" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "Sortirovka:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "SQL Query box" msgid "Additional search criteria" msgstr "SQL so‘rovlari qutisi" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "Nazorat foydalanuvchisi" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3551,14 +3554,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3811,7 +3814,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "Jadvallar" @@ -3825,12 +3828,12 @@ msgstr "Jadvallar" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "Ma`lumotlar" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "Fragmentlangan" @@ -3954,7 +3957,7 @@ msgstr "" msgid "Closed" msgstr "Yopish" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -4103,22 +4106,22 @@ msgstr "Viki" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "Quyidagi qiymatni o‘rnatish: \"%s\"" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "Asl qiymatlarni tiklash" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "Tozalash" @@ -4432,7 +4435,7 @@ msgstr "Fayl kodirovkasi" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "Format" @@ -4555,7 +4558,7 @@ msgstr "Belgi identifikatori" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME turi" @@ -4595,7 +4598,7 @@ msgid "Enclose table and column names with backquotes" msgstr "Jadval va maydon nomlarini teskari qo‘shtirnoqqa olish" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL bilan moslik rejimi" @@ -5735,9 +5738,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" -"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." -"com/19588]\"MySQL Bugs\"[/a]larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" +"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"larga qarang" #: libraries/config/messages.inc.php:394 msgid "Disable use of INFORMATION_SCHEMA" @@ -5839,8 +5842,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5854,8 +5857,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " -"[kbd]\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" +"\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:415 #, fuzzy @@ -5947,8 +5950,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" @@ -6284,10 +6287,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6574,7 +6577,7 @@ msgstr "" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6582,50 +6585,58 @@ msgid "" "configured)." msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "Server javob bermayapti" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "Tafsilotlar..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" "\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida " "ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi." -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "Parolni o‘zgartirish" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "Parol yo‘q" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "Tasdiqlash" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "Parolni xeshlash" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 #, fuzzy #| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" @@ -6786,12 +6797,12 @@ msgstr "" #, fuzzy, php-format #| msgid "" #| "s value is interpreted using %1$sstrftime%2$s, so you can use time " -#| "matting strings. Additionally the following transformations will pen: " -#| "%3$s. Other text will be kept as is." +#| "matting strings. Additionally the following transformations will pen: %3" +#| "$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -6886,7 +6897,7 @@ msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" msgid "authored on %1$s by %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6896,35 +6907,35 @@ msgstr "" "asoslangan brauzеrlarning (Safari, Google Chrome, Arora va hkz) ma’lum " "kamchiligi." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "Import qilinayotgan fayl formati" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "Fayl qayta ishlanmoqda, iltimos, sabr qiling." -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." @@ -6932,36 +6943,36 @@ msgstr "" "Sabr qiling, fayl yuklanmoqda. Ushbu yuklanish haqida batafsil ma’lumot " "mavjud emas." -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 #, fuzzy #| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" msgstr "MySQL serveriga ulanib bo‘lmadi" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, fuzzy, php-format #| msgid "Go to database" msgid "Importing into the database \"%s\"" msgstr "Ushbu bazaga o‘tish" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, fuzzy, php-format #| msgid "Go to database" msgid "Importing into the table \"%s\"" msgstr "Ushbu bazaga o‘tish" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 #, fuzzy #| msgid "File to import" msgid "File to Import:" msgstr "Import qilinayotgan fayl " -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -7057,71 +7068,71 @@ msgstr "" "Ma`lumotlarni va jadval indekslarini keshlashda InnoDB ishlatadigan xotira " "buferi hajmi" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB ahvoli" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "Ishlatilish" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "sahifalar soni" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "Bo‘sh sahifalar soni" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "Kir sahifalar" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "Ma`lumotlar mavjud sahifalar" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "Tozalash kerak bo‘lgan sahifalar soni" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "Band sahifalar" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "Blokirovka qilingan sahifalar soni" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "Faollik" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "O‘qishga ruxsat so‘rash" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "Yozishga bo‘lgan so‘rovlar soni" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "Buferni o‘qishda qoldirishlar mavjud" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "Buferning tozalanishi kutilmoqda" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "Buferni o‘qishda % qoldirishlar mavjud" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "% buferning tozalanishi kutilmoqda" @@ -7357,8 +7368,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:135 @@ -7375,139 +7386,139 @@ msgstr "" msgid "No data found for GIS visualization." msgstr "" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi " "amallarni bajarishingiz mumkin:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "Ushbu ko‘rinishga o‘tish" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "Yashirish" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "Ikkilik" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Qo‘yilayotgan qatorlar soni: \"%s\"" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 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" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -7561,7 +7572,7 @@ msgstr "" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7856,7 +7867,7 @@ msgstr "Jadval parametrlari" msgid "Rename table to" msgstr "Jadval nomini o‘zgartirish" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "Jadval turi" @@ -7978,8 +7989,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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." @@ -8060,21 +8071,21 @@ msgstr "Kiritilgan ma`lumotlar noto‘g‘ri. Kirish mumkin emas." msgid "Can not find signon authentication script:" msgstr "Autentifikatsiya usuli uchun login tanlovlarini kiritish" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "\"%s\" faylida kalit identifikatori mavjud emas" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "Uskunaviy autentifikatsiya muvaffaqiyatsiz yakunlandi" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "Autentifikatsiya..." @@ -8239,20 +8250,21 @@ msgstr "Mavjud MIME turlari" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "Xost" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "Tuzilgan sana" @@ -8501,7 +8513,7 @@ msgstr "" "Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri." #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "Jadval nomi" @@ -8805,7 +8817,7 @@ msgstr "PDF-sxema tuzish" msgid "Displaying Column Comments" msgstr "Maydon izohlarini ko‘rsatish" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "O‘girish" @@ -8882,7 +8894,7 @@ msgstr "Belgilashni bekor qilish" msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish" @@ -8896,8 +8908,8 @@ msgstr "" "bo‘limiga qo‘shing:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8917,15 +8929,15 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "O‘zgaruvchi" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "Server ID si" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." @@ -8933,17 +8945,17 @@ msgstr "" "Ro‘yxatda faqat \"--report-host=host_name\" tanlovi yordamda yuklangan tobе " "sеrvеrlar ko‘rsatilmoqda." -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "Har qaysi foydalanuvchi" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8952,27 +8964,27 @@ msgstr "Har qaysi foydalanuvchi" msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " @@ -8981,7 +8993,7 @@ msgstr "" "Agar Xostlar jadvalidan foydalanilsa, ushbu maydonga e`tibor berilmaydi va " "uning o‘rniga Xostlar jadvalidagi qiymatlar ishlatiladi." -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "Parol o‘rnatish" @@ -9051,7 +9063,7 @@ msgstr "Tafsilotlar..." msgid "Event name" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "Hodisa turi" @@ -9461,7 +9473,7 @@ msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." msgid "There are no events to display." msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -9471,7 +9483,7 @@ msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" msgid "The %s table doesn't exist!" msgstr "\"%s\" jadvali mavjud emas!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -9520,101 +9532,101 @@ msgstr "Atributlar" msgid "Extra" msgstr "Qo‘shimcha" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "Yangi sahifa tuzish" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Avtomatik raskladka" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "Ichki aloqalar" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Jadvallarni tanlang" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "Jadvallarni tanlang" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "Maydon nomlari" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Aloqalar sxemasi" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "To‘rni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "Rangda ko‘rsatish" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "Jadval o‘lchamlarini ko‘rsatish" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "Bir xil kenglikdagi barcha jadvallarni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "Faqat kalitlarni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "Albom shaklida" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "Kitob shaklida" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Tuzish" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "Qog‘oz o‘lchami" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -9622,7 +9634,7 @@ msgstr "" "Ushbu sahifada mavjud bo‘lmagan jadvallar uchun murojaatlar mavjud. Ushbu " "murojaatlarni o‘chirishni xohlaysizmi?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "Ko‘rsatish" @@ -9945,7 +9957,7 @@ msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "Foydalanuvchi" @@ -10092,8 +10104,8 @@ msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" 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 " @@ -10156,11 +10168,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -10257,7 +10269,7 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" @@ -10270,12 +10282,12 @@ msgstr "Kuzatish faol." msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" namoyishi o‘chirildi" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" @@ -10308,14 +10320,14 @@ msgid "Column %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "Birlamchi" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "Indeks" @@ -10325,7 +10337,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "Matn to‘laligicha" @@ -10353,7 +10365,7 @@ msgstr "Aloqalarni ko‘rish" msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." @@ -10365,7 +10377,7 @@ msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." msgid "Add column" msgstr "Ustun(lar) qo‘shish" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" @@ -10390,15 +10402,15 @@ msgstr "\"%s\" dan keyin" msgid "Create an index on  %s columns" msgstr "\"%s\" maydon uchun indeks tuzish" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "statik" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "dinamik" @@ -10406,15 +10418,15 @@ msgstr "dinamik" msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "Qator uzunligi" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "Qator hajmi" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -10468,15 +10480,15 @@ msgstr "Indеks(lar)ni saqlash" msgid "Add FULLTEXT index" msgstr "" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "Ma`lumot" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "Effektivlik" @@ -10518,7 +10530,7 @@ msgstr "" msgid "Move column" msgstr "Ustun(lar)ni olib tashlash" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, php-format msgid "" "For a list of available transformation options and their MIME type " @@ -10527,11 +10539,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:145 msgid "Transformation options" msgstr "O‘girishlar parametrlari" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -10543,36 +10555,36 @@ msgstr "" "(\") belgilari oldidan teskari egri chiziq bo‘lishi kerak, masalan: \"\\\\xyz" "\" yoki \"a\\\"b\"." -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 #, fuzzy #| msgid "None" msgctxt "for default" msgid "None" msgstr "Yo‘q" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "Qoidaga ko‘ra:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "\"%s\" dan keyin" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" @@ -10814,7 +10826,7 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" @@ -11136,29 +11148,29 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "Fayllar soni" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "Jurnal fayli" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "Pozitsiya" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "Asl pozitsiya" @@ -11166,31 +11178,31 @@ msgstr "Asl pozitsiya" msgid "Character Sets and Collations" msgstr "Kodirovkalar va taqqoslashlar" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "Ma`lumotlar bazasi statiskasi" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "Statiskani yoqish" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -11262,42 +11274,42 @@ msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." msgid "Unknown error" msgstr "Noma’lum xatolik" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "%s bosh sеrvеriga ulanib bo‘lmadi." -#: server_replication.php:96 +#: server_replication.php:101 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:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "Bosh sеrvеrni o‘zgartirib bo‘lmadi" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Bosh rеplikatsiya sеrvеri quyidagiga o‘zgartirildi: %s" -#: server_replication.php:210 +#: server_replication.php:236 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:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -11306,11 +11318,11 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "Bosh sеrvеr konfiguratsiyasi" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -11325,19 +11337,19 @@ msgstr "" "bazalarnigina rеplikatsiya qilishda foydali) tanlashingiz mumkin. " "Rеplikatsiya usulini tanlang:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "Barcha bazalarni rеplikatsiya qilish; Quyidagilardan tashqari:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "Barcha bazalarga e’tibor bеrmaslik; Quyidagilardan tashqari:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "Bazalarni tanlang:" -#: server_replication.php:258 +#: server_replication.php:285 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -11345,7 +11357,7 @@ msgstr "" "Endi quyidagi qatorlarni \"my.cnf\" faylining oxiriga qo‘shing va MySQL " "sеrvеrini qayta yuklang." -#: server_replication.php:260 +#: server_replication.php:287 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 " @@ -11355,74 +11367,74 @@ 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:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "Tobе SQL Oqimi ishlamayapti!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "Tobе kirish/chiqish oqimi ishlamayapti!" -#: server_replication.php:334 +#: server_replication.php:361 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:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "Bazalarni bosh sеrvеr bilan sinxronizatsiya qilish" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "Tobе sеrvеrni nazorat qilish:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "Barchasini boshlash" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "Barchasini to‘xtatish" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "Tobе sеrvеrni tiklash" -#: server_replication.php:358 +#: server_replication.php:385 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: server_replication.php:360 +#: server_replication.php:387 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: server_replication.php:363 +#: server_replication.php:390 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: server_replication.php:365 +#: server_replication.php:392 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "Xatoliklarni boshqarish:" -#: server_replication.php:372 +#: server_replication.php:399 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -11430,19 +11442,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:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "Joriy xatoliklarni tashlab kеtish" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "Kеyingisini tashlab kеtish" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "xatoliklar." -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -11451,170 +11463,170 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "So‘rovlar keshi" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "Oqimlar" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "Indeks keshi" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "Birlashishlar" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "Sortirovka" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "MySQL-serverning hozirgi holati" -#: server_status.php:810 +#: server_status.php:809 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of fields" msgid "Number of data points: " msgstr "Maydonlar soni " -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Yangilash" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "Filtr" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolni o‘zgartirmaslik" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Aloqalar" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "So‘rov turi" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funksiyalar" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -11622,34 +11634,34 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Boshlang‘ich sahifani sozlash" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "Tavsif" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" "MySQL-server \"%s\" davomida ishlamoqda. Ishga tushirilgan vaqt: \"%s\"." -#: server_status.php:1111 +#: server_status.php:1110 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11658,21 +11670,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1113 +#: server_status.php:1112 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1115 +#: server_status.php:1114 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1118 +#: server_status.php:1117 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11687,11 +11699,11 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11700,47 +11712,47 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "Buyruq" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL-serverga ulanib bo‘lmadi" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -11749,16 +11761,16 @@ msgstr "" "Binar jurnali keshini ishlatib, \"binlog_cache_size\" qiymatidan oshib, o‘z " "ichiga olgan SQL-jumlalari vaqtinchalik faylga saqlangan tranzaksiyalar soni." -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -11771,11 +11783,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11783,7 +11795,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11791,31 +11803,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "Bajariladigan \"INSERT DELAYED\" so‘rovlar soni." -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -11825,7 +11837,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -11834,7 +11846,7 @@ msgstr "" "Indeksdan birinchi yozuvni o‘qishga bo‘lgan so‘rovlar soni. O‘zgaruvchining " "qiymati katta bo‘lsa, server bir necha marotiba indeksni ko‘rib chiqadi." -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." @@ -11843,7 +11855,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -11853,7 +11865,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11862,7 +11874,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -11876,7 +11888,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -11888,35 +11900,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "Jadvalga yozuv qo‘yishga bo‘lgan so‘rovlar soni." -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Bufer pulidagi tozalash jarayoni (FLUSH) qo‘llanilgan sahifalar soni." -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -11926,7 +11938,7 @@ msgstr "" "ustidan o‘qish yoki yozish jarayoni bajarilmoqda, yoki ularni boshqa " "sabablarga ko‘ra tozalash yoki o‘chirish imkoniyati yo‘q." -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -11938,11 +11950,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -11951,7 +11963,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11960,12 +11972,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB tomonidan amalga oshirilgan o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -11973,7 +11985,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -11987,51 +11999,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." @@ -12039,35 +12051,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -12076,51 +12088,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." @@ -12128,7 +12140,7 @@ msgstr "" "Indeks keshidagi o‘zgartirilgan, lekin hali diskka yozilmagan bloklar soni. " "Ushbu parametr, shuningdek, \"Not_flushed_key_blocks\" nomi bilan ham ma`lum." -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." @@ -12136,7 +12148,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " @@ -12145,17 +12157,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "Indeks keshidagi bloklarni o‘qishga bo‘lgan so‘rovlar soni." -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -12167,26 +12179,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "Blokni indeks keshiga yozishga bo‘lgan so‘rovlar soni." -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -12197,19 +12209,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Kolichestvo strok, ojidayushix vstavki v zaprosax \"INSERT DELAYED\" " "so‘rovlarida qo‘yilishini kutayotgan qatorlar soni." -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -12217,42 +12229,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ochiq oqimlar soni (jurnal fayllarida ko‘llaniladi). Oqim deb \"fopen" "()\" funksiyasi yordamida ochilgan faylga aytiladi." -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "" "So‘rovlar keshiga \"tushishlar\" soni, ya`ni keshda turgan so‘rovlar " "tomonidan qoniqtirilgan so‘rovlar soni." -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -12264,7 +12276,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -12272,19 +12284,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -12292,13 +12304,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "" "Bog‘lanish mavjud bo‘lgan jadvalda diapazon bo‘yicha qidiruv ishlatgan holda " "bajarilgan birlashma so‘rovlar soni." -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -12308,7 +12320,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -12317,17 +12329,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "" "Birinchi jadvalga nisbatan to‘laligicha qidiruv ishlatgan holda bajarilgan " "birlashma so‘rovlar soni." -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Tobe oqim tomonidan joriy vaqtda ochilgan vaqtinchalik jadvallar soni." -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -12335,13 +12347,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Agar ushbu server bosh serverga ulangan holda tobe server sifatida " "ishlayotgan bo‘lsa, ushbu o‘zgaruvchiga \"ON\" qiymati belgilanadi." -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -12349,12 +12361,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time sekunddan ko‘proq vaqt bajarilgan so‘rovlar soni." -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -12364,26 +12376,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "" "Jadvalni to‘laligicha ko‘rib chiqish yordamida bajarilgan sortirovka " "operatsiyalari soni." -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Darhol qoniqtirilgan jadvalni blokirovka qilishga bo‘lgan so‘rovlar soni." -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -12396,7 +12408,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -12407,11 +12419,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -12423,74 +12435,74 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Boshlash" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Indеks(lar)ni saqlash" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "Yangilash" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR maydonidagi ustunlar soni" -#: server_status.php:1786 +#: server_status.php:1785 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xatoliklarni boshqarish:" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Asl qiymatlarni tiklash" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -12499,7 +12511,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12507,18 +12519,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -12526,11 +12538,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -12538,104 +12550,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: server_status.php:1841 +#: server_status.php:1840 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Jadvallarni tanlang" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Jadval nomi noto‘g‘ri" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL so‘rovlari" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Statiskani ko‘rsatish" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Jadvallarni tanlang" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "So‘rov turi" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekundiga" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -12757,19 +12769,19 @@ msgstr "" "Nishon baza manba baza bilan to‘liq sinxronizatsiya qilinadi. Manba baza " "o‘zgarishsiz qoladi." -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "Server o‘zgaruvchilari va sozlanishlari" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "Sessiya qiymatlari" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "Global qiymat" @@ -13104,9 +13116,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" -"[/kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" +"kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:314 #, fuzzy, php-format @@ -13166,44 +13178,44 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" msgid "Wrong data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:835 +#: sql.php:871 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "Tuzilgan" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "Xatcho‘p belgisi" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -13368,16 +13380,16 @@ msgstr "Tahrirlash usuli" msgid "Index name:" msgstr "Indeks nomi:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 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:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "Indeks turi:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "\"%s\" maydon(lar)ini indeksga qo‘shish" @@ -13562,41 +13574,41 @@ msgstr "\"%s\" dеb eksport qilish" msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "Hozir faollashtirish" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "Vеrsiyasini tuzish" @@ -13967,8 +13979,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -14103,8 +14115,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -15216,8 +15228,8 @@ msgstr "Maksimal ulanishlar soni " #~ "The result of this query can't be used for a chart. See [a@./" #~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]" #~ msgstr "" -#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation." -#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" +#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" +#~ "\"FAQ 3.11\"[/a]ga qarang" #~ msgid "Add a New User" #~ msgstr "Yangi foydalanuvchi qo‘shish" diff --git a/po/zh_CN.po b/po/zh_CN.po index 066277154b..e00fbc1d03 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-13 12:11+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: Chinese (China) \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: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "页码:" @@ -39,36 +39,36 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "搜索" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "搜索" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "执行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "键名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "说明" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "使用此值" @@ -117,18 +117,18 @@ msgstr "创建数据库 %1$s 成功。" msgid "Database comment: " msgstr "数据库注释: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "表注释" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,18 +136,18 @@ msgstr "表注释" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "字段" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -164,11 +164,11 @@ msgstr "字段" msgid "Type" msgstr "类型" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -180,9 +180,9 @@ msgstr "类型" msgid "Null" msgstr "空" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -195,8 +195,8 @@ msgstr "空" msgid "Default" msgstr "默认" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -204,11 +204,11 @@ msgstr "默认" msgid "Links to" msgstr "链接到" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -217,12 +217,12 @@ msgstr "链接到" msgid "Comments" msgstr "注释" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -233,23 +233,23 @@ msgstr "注释" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "否" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -261,8 +261,8 @@ msgstr "否" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "是" @@ -272,46 +272,46 @@ msgid "View dump (schema) of database" msgstr "查看数据库的转储(大纲)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "数据库中没有表。" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "全选" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "全不选" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "已将数据库 %1$s 改名为 %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -321,14 +321,14 @@ msgstr "表" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "行数" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "大小" @@ -341,7 +341,7 @@ msgstr "使用中" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "创建时间" @@ -349,7 +349,7 @@ msgstr "创建时间" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "最后更新" @@ -357,7 +357,7 @@ msgstr "最后更新" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "最后检查" @@ -371,7 +371,7 @@ msgstr[0] "%s 张表" msgid "You have to choose at least one column to display" msgstr "您最少要选择显示一列" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "切换到 %s可视化查询生成器%s" @@ -403,9 +403,9 @@ msgstr "已追踪的表" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "数据库" @@ -423,66 +423,66 @@ msgstr "更新" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "状态" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "操作" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "显示" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "删除追踪数据" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "删除" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "启用" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "禁用" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "版本" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "追踪报告" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "结构快照" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "追踪表" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "数据库日志" @@ -498,12 +498,12 @@ msgstr "选择导出文件的类型!" msgid "Bad parameters!" msgstr "非法参数!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -514,7 +514,7 @@ msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项 msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" @@ -523,114 +523,121 @@ msgstr "转存已经保存到文件 %s 中。" msgid "Invalid export type" msgstr "导出类型无效" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, php-format msgid "Value for the column \"%s\"" msgstr "字段 %s 的值" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "以 OpenStreetMaps 为背景" # what's the f**k word of "SRID"? -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "几何体" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "点" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "点 %d" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 msgid "Add a point" msgstr "添加点" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 msgid "Linestring" msgstr "线" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "外环" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "内环" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 msgid "Add a linestring" msgstr "添加线" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 msgid "Add an inner ring" msgstr "添加内环" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "多边形" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 msgid "Add a polygon" msgstr "添加多边形" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 msgid "Add geometry" msgstr "添加几何体" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "输出" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 +#, fuzzy +#| msgid "" +#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " +#| "string into the \"Value\" field" msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "从 \"函数\" 列中选择 \"GeomFromText\" 并粘贴下列内容到 \"值\" 列中" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "显示书签" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "书签已删除。" -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "无法读取文件" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -638,7 +645,7 @@ msgid "" msgstr "" "您正在载入不支持的压缩格式 (%s)。配置文件中没有对应这种格式的配置说明。" -#: import.php:400 +#: import.php:404 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 " @@ -647,32 +654,32 @@ msgstr "" "没有接收到要导入的数据。可能是文件名没有提交,也可能是文件大小超出 PHP 限制。" "参见 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "没有字符集转换库,无法转换文件字符集" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "导入成功,执行了 %d 个查询。" -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "脚本超时,如果你要完成导入,请重新提交相同的文件,导入将会继续进行。" -#: import.php:513 +#: import.php:517 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." @@ -680,9 +687,9 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 语句已成功运行" @@ -696,7 +703,7 @@ msgstr "返回" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" @@ -706,7 +713,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -746,7 +753,7 @@ msgstr "添加索引" msgid "Edit Index" msgstr "编辑索引" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, php-format msgid "Add %d column(s) to index" msgstr "添加 %d 个字段至索引" @@ -796,24 +803,24 @@ msgstr "关闭" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "编辑" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "实时流量图" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "实时连接/进程图" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "实时查询图" @@ -823,24 +830,24 @@ msgstr "静态数据" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "总计" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "其它" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -860,7 +867,7 @@ msgstr "服务器流量 (单位: KB)" msgid "Connections since last refresh" msgstr "自上次刷新起的连接数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "进程" @@ -878,7 +885,7 @@ msgstr "自上次刷新起的内部查询" msgid "Questions (executed statements by the server)" msgstr "内部查询 (服务器执行的查询)" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "查询统计" @@ -922,13 +929,13 @@ msgstr "系统交换空间" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -980,32 +987,32 @@ msgstr "已发送字节数" msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "连接" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "字节" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1019,11 +1026,11 @@ msgstr "%d 张表" msgid "Questions" msgstr "内部查询" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "设置" @@ -1044,12 +1051,12 @@ msgid "Please add at least one variable to the series" msgstr "请至少添加一个数据" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "无" @@ -1144,7 +1151,7 @@ msgstr "修改设置" msgid "Current settings" msgstr "当前设置" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 msgid "Chart Title" msgstr "图表标题" @@ -1224,7 +1231,7 @@ msgstr "分析输出" #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "时间" @@ -1316,8 +1323,8 @@ msgstr "导入配置失败。正在重设为默认设置..." #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" @@ -1536,12 +1543,12 @@ msgstr "查询执行时间" msgid "%d is not valid row number." msgstr "%d 不是有效行数。" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "保存" @@ -1599,8 +1606,8 @@ msgstr "查询结果" msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "忽略" @@ -1705,7 +1712,7 @@ msgstr "更新行" msgid "Generate password" msgstr "生成密码" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "生成" @@ -1802,63 +1809,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "十二月" @@ -1896,32 +1903,32 @@ msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "周六" @@ -2037,16 +2044,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "每分钟" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "每小时" @@ -2063,7 +2070,7 @@ msgstr "最大限制:%s %s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "文档" @@ -2086,14 +2093,14 @@ msgid "en" msgstr "en" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "错误" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL 查询" @@ -2111,210 +2118,210 @@ msgstr "SQL 查询" msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "解析 SQL" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "略过解析 SQL" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "提交查询" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "刷新" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "校验 SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "在本页面编辑此查询" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "性能分析" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "周日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 msgid "Missing parameter:" msgstr "缺少参数:" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 msgctxt "First page" msgid "Begin" msgstr "首页" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 msgctxt "Previous page" msgid "Previous" msgstr "上一页" -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 msgctxt "Next page" msgid "Next" msgstr "下一页" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 msgctxt "Last page" msgid "End" msgstr "尾页" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 msgid "Click to toggle" msgstr "点击切换" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "结构" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "插入" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "浏览" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "操作" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "清空" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "执行" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "打印" @@ -2331,104 +2338,104 @@ msgstr "配置文件权限错误,无法写入!" msgid "Font size" msgstr "字号" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "递增" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "递减" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "排序" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "条件" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "添加/删除标准行" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "添加/删除字段" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "更新查询" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "使用表" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "或" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "与" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "插入" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "删除" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "修改" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "至少一个词" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "所有词" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "精确短语" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "使用正则表达式" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜索结果 %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "总计: %s 个匹配" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2436,44 +2443,44 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "删除" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "在数据库中搜索" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要查找的内容 (通配符: \"%\"):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "查找:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格 (\" \") 分隔。" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 msgid "Inside tables:" msgstr "于下列表:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "包含字段:" @@ -2519,8 +2526,8 @@ msgstr "每 %s 行重复表头" msgid "Sort by key" msgstr "主键排序" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2597,7 +2604,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "杀死" @@ -2615,8 +2622,8 @@ msgstr "查询中" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, 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。" #: libraries/DisplayResults.class.php:4939 @@ -2627,7 +2634,7 @@ msgstr "显示行" msgid "total" msgstr "总计" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" @@ -2638,7 +2645,7 @@ msgstr "查询花费 %01.4f 秒" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "选中项:" @@ -2648,8 +2655,8 @@ msgstr "选中项:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "全选" @@ -2687,41 +2694,41 @@ msgstr "找不到链接" msgid "Too many error messages, some are not displayed." msgstr "错误信息太多,部分未显示。" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "文件不是上传的文件。" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "仅上传了文件的一部分内容。" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "将文件写入磁盘失败。" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "因扩展而停止文件上传。" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2729,11 +2736,11 @@ msgstr "" "移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "移动上传的文件时发生错误。" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "无法读取移动后的上传文件。" @@ -2742,68 +2749,68 @@ msgstr "无法读取移动后的上传文件。" msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "必须启用 Cookies 才能登录。" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "没有已定义的索引!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "基数" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "整理" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "注释" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "已删除主键" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "已删除索引 %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2812,12 +2819,12 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除 #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "数据库" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "服务器" @@ -2885,18 +2892,18 @@ msgstr "用户" msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "二进制日志" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "复制" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "变量" @@ -3027,8 +3034,8 @@ msgid "" msgstr "" "无法保存用户界面属性 \"%s\"。修改将在刷新本页后丢失。请检查表结构是否已修改。" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "函数" @@ -3038,11 +3045,11 @@ msgstr "函数" msgid "Operator" msgstr "运算符" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "值" @@ -3050,60 +3057,60 @@ msgstr "值" msgid "Table Search" msgstr "普通搜索" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 msgid "Edit/Insert" msgstr "编辑/插入" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "选择字段 (至少一个):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "添加搜索条件 (“where”语句的主体):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "每页行数" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "显示顺序:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "使用该字段标记每个点" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 msgid "Maximum rows to plot" msgstr "显示的最多行数" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 msgid "Additional search criteria" msgstr "附加搜索条件" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "在两个不同的字段中执行 “依例查询” (通配符:“%”)" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "执行“依例查询”(通配符:“%”)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "浏览/编辑点" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 msgid "How to use" msgstr "如何使用" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 msgid "Reset zoom" msgstr "重置缩放" @@ -3176,14 +3183,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3436,7 +3443,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "数据表" @@ -3450,12 +3457,12 @@ msgstr "数据表" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "数据" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "多余" @@ -3561,7 +3568,7 @@ msgstr "开启" msgid "Closed" msgstr "关闭" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3699,22 +3706,22 @@ msgstr "维基 (Wiki) (外链,英文)" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "此设置已禁用,不会应用到你的设置中" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "设置值: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "还原默认值" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "允许用户自定义该值" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "重置" @@ -3989,7 +3996,7 @@ msgstr "文件字符集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "格式" @@ -4098,7 +4105,7 @@ msgstr "关键标签" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME 类型" @@ -4134,7 +4141,7 @@ msgid "Enclose table and column names with backquotes" msgstr "给数据表名及字段名加上反引号" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL 兼容模式" @@ -5628,10 +5635,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "需要启用 SQL 校验器" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -5891,52 +5898,60 @@ msgstr "缺少 %s 扩展。请检查 PHP 配置。" msgid "possible deep recursion attack" msgstr "可能的深度递归攻击" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." msgstr "服务器无响应(或者本地 MySQL 服务器的套接字没有正确配置)。" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 msgid "The server is not responding." msgstr "服务器没有响应。" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "请检查数据库目录的权限。" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "详细..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "修改密码" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "无密码" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "重新输入" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "密码加密方式" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 兼容" @@ -6066,8 +6081,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -6145,7 +6160,7 @@ msgstr "为 %2$s.%3$s 创建版本 %1$s" msgid "authored on %1$s by %2$s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6154,64 +6169,64 @@ msgstr "" "上传的文件可能超过了最大大小,也可能是一个基于 webkit 浏览器 (Safari, Google " "Chrome, Arora 等) 的已知缺陷 (bug) 。" -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "导入文件的格式" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "正在处理,请稍候。" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "正在上传,没有详细信息,请稍候。" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "导入到当前服务器" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "导入到数据库“%s”" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "导入到数据表“%s”" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "要导入的文件:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "文件可能已压缩 (%s) 或未压缩。" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6289,71 +6304,71 @@ msgid "" "tables." msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB 状态" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "缓冲池使用情况" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "页数" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "空闲页" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "脏页" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "非空页" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "要刷新的页" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "负载页" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "锁定页" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "缓冲池活动" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "读请求" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "写请求" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "读缺失数" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "写等待数" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "读缺失率" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "写等待率" @@ -6563,8 +6578,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:135 @@ -6579,123 +6594,123 @@ msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 msgid "View a structure's contents by clicking on its name" msgstr "请通过点击结构的名称来查看它的内容" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 msgid "Edit structure by following the \"Structure\" link" msgstr "请通过点击 \"结构\" 链接来编辑结构" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, php-format msgid "Go to database: %s" msgstr "转到数据库: %s" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, php-format msgid "Go to table: %s" msgstr "转到表: %s" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, php-format msgid "Go to view: %s" msgstr "转到视图: %s" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "隐藏" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "二进制" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "因长度问题,
该字段可能无法编辑" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "网站服务器上传文件夹" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -6739,7 +6754,7 @@ msgstr "添加表前缀" msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7028,7 +7043,7 @@ msgstr "表选项" msgid "Rename table to" msgstr "将表改名为" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "存储引擎" @@ -7142,8 +7157,8 @@ msgstr "欢迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 来创建一个配置文件。" @@ -7216,21 +7231,21 @@ msgstr "用户名/密码错误。拒绝访问。" msgid "Can not find signon authentication script:" msgstr "找不到 signon 认证脚本:" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "文件 %s 未包含任何密钥" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "硬件认证失败" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "没有可用的密钥插入" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "正在认证..." @@ -7367,20 +7382,21 @@ msgstr "显示 MIME 类型" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "主机" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "生成日期" @@ -7626,7 +7642,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV 输入的第 %d 行字段数有错。" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "数据表名" @@ -7862,7 +7878,7 @@ msgstr "创建 PDF" msgid "Displaying Column Comments" msgstr "显示字段注释" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "浏览器转换" @@ -7930,7 +7946,7 @@ msgstr "全不选" msgid "Slave configuration" msgstr "从服务器配置" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "修改或重新配置主服务器" @@ -7943,8 +7959,8 @@ msgstr "" "添加此行到 [mysqld] 一节中:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -7964,31 +7980,31 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "变量" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "服务器ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "任意用户" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -7997,34 +8013,34 @@ msgstr "任意用户" msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主机表时,此处的数据会被主机表中的数据所替换。" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "生成密码" @@ -8083,7 +8099,7 @@ msgstr "详细" msgid "Event name" msgstr "事件名称" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "事件类型" @@ -8427,7 +8443,7 @@ msgstr "在数据库 %2$s 中找不到名为 %1$s 的事件" msgid "There are no events to display." msgstr "没有事件。" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8436,7 +8452,7 @@ msgstr "没有事件。" msgid "The %s table doesn't exist!" msgstr "数据表 %s 不存在!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8482,97 +8498,97 @@ msgstr "属性" msgid "Extra" msgstr "额外" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "创建新页" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "页面名称" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "自动排版,基于" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "内联" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "外键" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "请选择需要编辑的页" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "选择页" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "选择表" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "字段名" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "显示关系大纲" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "选择导出关系类型" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "显示网格" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "显示颜色" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "显示表格大小" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "以相同宽度显示所有的表" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "数据字典" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "仅显示键" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "横向" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "纵向" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "方向" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "纸张大小" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "当前页所引用的表不存在了。您是否想要删除这些引用?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "切换草稿板" @@ -8866,7 +8882,7 @@ msgstr "用户可以访问“%s”" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "用户" @@ -9000,12 +9016,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。" #: libraries/server_privileges.lib.php:3054 msgid "The selected user was not found in the privilege table." @@ -9061,11 +9077,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -9156,7 +9172,7 @@ msgid "" msgstr "" "SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s" @@ -9169,12 +9185,12 @@ msgstr "追踪已启用。" msgid "Tracking is not active." msgstr "追踪已禁用。" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s" @@ -9202,14 +9218,14 @@ msgid "Column %s has been dropped" msgstr "已删除字段 %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "主键" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "索引" @@ -9219,7 +9235,7 @@ msgid "Spatial" msgstr "空间" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "全文搜索" @@ -9245,7 +9261,7 @@ msgstr "关系查看" msgid "Propose table structure" msgstr "规划表结构" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" @@ -9253,7 +9269,7 @@ msgstr "至少要添加一个字段。" msgid "Add column" msgstr "添加字段" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" @@ -9276,15 +9292,15 @@ msgstr "于 %s 之后" msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "行统计" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "静态" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "动态" @@ -9292,15 +9308,15 @@ msgstr "动态" msgid "partitioned" msgstr "已分区" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "行长度" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "行大小" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "下一个自增值" @@ -9348,15 +9364,15 @@ msgstr "添加空间索引" msgid "Add FULLTEXT index" msgstr "添加全文索引" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "信息" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "已用空间" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "有效" @@ -9388,18 +9404,18 @@ msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号, msgid "Move column" msgstr "删除字段" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "转换选项" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9409,34 +9425,34 @@ msgstr "" "请使用此格式输入转换选项的值:'a',100,b,'c'...
如果您需要在值中输入反斜" "杠 (“\\”)或单引号(“'”),请在前面加上反斜杠 (如 '\\\\xyz' 或 'a\\'b')。" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM 或 SET 数据过长?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "获取更多编辑空间" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "无" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "定义:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "于 %s 之后" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "分区定义" @@ -9628,7 +9644,7 @@ msgid "" "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "无数据库" @@ -9906,29 +9922,29 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "文件" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "显示完整查询" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "日志文件名" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "位置" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "初始位置" @@ -9936,31 +9952,31 @@ msgstr "初始位置" msgid "Character Sets and Collations" msgstr "字符集和整理" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "已成功删除 %s 个数据库。" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "数据库统计" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "主复制" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "从复制" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "启用统计" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10029,38 +10045,38 @@ msgstr "已成功重新载入权限。" msgid "Unknown error" msgstr "未知错误" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "无法连接到主服务器 %s 。" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "无法修改主服务器" -#: server_replication.php:105 +#: server_replication.php:111 #, php-format msgid "Master server changed successfully to %s" msgstr "已成功修改主服务器到 %s" -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "查看主服务器状态" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "查看已连接的从服务器" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10069,11 +10085,11 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你想现在配置" "吗?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "主服务器配置" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10084,25 +10100,25 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" "库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "复制所有数据库,除了:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "仅复制:" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "请选择数据库:" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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 " @@ -10111,80 +10127,80 @@ msgstr "" "当 MySQL 服务器重新启动后,请点击 执行 按钮。你应该看见一条提示信息说此服务器" "已经被配置为主服务器" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "从 SQL 线程未启动!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "从 IO 线程未启动!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "服务器已被配置为一个复制进程中的从服务器。你是否要:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "查看从服务器状态" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "根据主服务器同步数据库" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "控制从服务器:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "全部启动" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "全部停止" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "重置从服务器" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "仅启动 SQL 线程" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "仅停止 SQL 线程" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "仅启动 IO 线程" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "仅停止 IO 线程" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "错误管理:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略错误可能导致主从服务器间不同步!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "忽略当前错误" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "忽略下" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "个错误。" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10193,138 +10209,138 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "已成功杀死线程 %s 。" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "句柄" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "查询缓存" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "线程" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "临时数据" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "延迟插入" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "键缓存" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "多表查询" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "排序" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "事务协调" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "强制更新 (关闭) 所有表" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "显示打开的表" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "显示从服务器" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "显示从服务器状态" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "强制更新查询缓存" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "运行信息" -#: server_status.php:810 +#: server_status.php:809 msgid "All status variables" msgstr "所有状态变量" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "监控" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "建议" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "记录数:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 msgid "Refresh rate: " msgstr "刷新频率: " -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 msgid "Filters" msgstr "过滤器" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 msgid "Containing the word:" msgstr "包含文字:" -#: server_status.php:878 +#: server_status.php:877 msgid "Show only alert values" msgstr "仅显示报警值" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "按分类显示。。。" -#: server_status.php:895 +#: server_status.php:894 msgid "Show unformatted values" msgstr "显示原始值" -#: server_status.php:899 +#: server_status.php:898 msgid "Related links:" msgstr "相关链接:" -#: server_status.php:934 +#: server_status.php:933 msgid "Run analyzer" msgstr "运行分析器" -#: server_status.php:935 +#: server_status.php:934 msgid "Instructions" msgstr "说明" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "建议系统可以通过分析服务器状态变量对服务器变量的设置提出建议。" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " @@ -10333,7 +10349,7 @@ msgstr "" "请注意本系统所提出的建议建立在简单计算以及通用场合中,可能并不能满足您系统的" "实际需求。" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " @@ -10342,7 +10358,7 @@ msgstr "" "在修改任何设置之前,请确定您确实知道在修改什么设置 (通过阅读文档) 并知道如何" "撤销改变。错误的设置可能导致与预期完全相反的结果。" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10352,45 +10368,45 @@ msgstr "" "效果就撤销改变。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, php-format msgid "Questions since startup: %s" msgstr "自启动以来的内部查询: %s" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "说明" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "查询数量" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "自启动以来的网络流量: %s" -#: server_status.php:1100 +#: server_status.php:1099 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 服务器已运行 %1$s。启动时间为 %2$s 。" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10398,11 +10414,11 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息" "。" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "复制状态" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10410,45 +10426,45 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确。" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "已接收" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "已发送" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "已取消" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "命令" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: server_status.php:1467 +#: server_status.php:1466 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10457,16 +10473,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10476,17 +10492,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10494,29 +10510,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延迟插入处理线程的数量。每张使用延迟插入的表都有自己的线程。" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10525,7 +10541,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10534,14 +10550,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根据索引读取行的请求数。如果该值很大,说明你的查询和表都建立了很好的索引。" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10550,7 +10566,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10558,7 +10574,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10568,7 +10584,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10578,35 +10594,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10615,7 +10631,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10626,11 +10642,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10638,24 +10654,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" "InnoDB 初始化的顺序预读数。这会在 InnoDB 执行一个顺序完整表扫描时发生。" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10667,85 +10683,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日志缓存太小而必须等待其被写入所造成的等待数。" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -10753,81 +10769,81 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "键缓存中已经使用的块数。该值指示在某个时刻使用了最多块数的数量。" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "导入文件的格式" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -10836,26 +10852,26 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -10864,35 +10880,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已经打开的表个数。如果该值很大,则说明表缓冲大小可能设置过小。" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " @@ -10901,19 +10917,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -10923,7 +10939,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10931,19 +10947,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -10951,11 +10967,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -10963,7 +10979,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10971,36 +10987,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11009,23 +11025,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11035,7 +11051,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11044,11 +11060,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11059,64 +11075,64 @@ msgstr "" "thread_cache_size 的值。(如果线程状况良好,这么做通常并不会带来显著的性能提" "升。)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "线程缓存命中率 %%" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: server_status.php:1734 +#: server_status.php:1733 msgid "Start Monitor" msgstr "启动监控" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "说明/设置" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "完成排列/编辑图表" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 msgid "Add chart" msgstr "添加图表" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "排列/编辑图表" -#: server_status.php:1765 +#: server_status.php:1764 msgid "Refresh rate" msgstr "刷新频率" -#: server_status.php:1770 +#: server_status.php:1769 msgid "Chart columns" msgstr "每行图表个数" -#: server_status.php:1786 +#: server_status.php:1785 msgid "Chart arrangement" msgstr "图表排列" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" "图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" -#: server_status.php:1787 +#: server_status.php:1786 msgid "Reset to default" msgstr "恢复默认" -#: server_status.php:1791 +#: server_status.php:1790 msgid "Monitor Instructions" msgstr "监控说明" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11128,7 +11144,7 @@ msgstr "" "需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" "请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11138,11 +11154,11 @@ msgstr "" "很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" "的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "使用监控:" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " @@ -11151,7 +11167,7 @@ msgstr "" "您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" "改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11161,11 +11177,11 @@ msgstr "" "要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" "示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "请注意:" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11176,85 +11192,85 @@ msgstr "" "载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" "表。" -#: server_status.php:1837 +#: server_status.php:1836 msgid "Preset chart" msgstr "预置图表" -#: server_status.php:1841 +#: server_status.php:1840 msgid "Status variable(s)" msgstr "状态变量" -#: server_status.php:1843 +#: server_status.php:1842 msgid "Select series:" msgstr "选择数据:" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "常用监控" -#: server_status.php:1860 +#: server_status.php:1859 msgid "or type variable name:" msgstr "或输入变量名:" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "独立显示" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "应用除数" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "在值后附加单位" -#: server_status.php:1879 +#: server_status.php:1878 msgid "Add this series" msgstr "添加该数据" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "清除所有数据" -#: server_status.php:1884 +#: server_status.php:1883 msgid "Series in Chart:" msgstr "图表中的数据:" -#: server_status.php:1899 +#: server_status.php:1898 msgid "Log statistics" msgstr "日志统计" -#: server_status.php:1900 +#: server_status.php:1899 msgid "Selected time range:" msgstr "选择时间范围:" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "去除 INSERT 语句中的变量值以获得更好的分组" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "请选择生成统计的来源日志。" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "结果将根据查询语句分组。" -#: server_status.php:1922 +#: server_status.php:1921 msgid "Query analyzer" msgstr "查询分析器" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1975 +#: server_status.php:1974 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11369,19 +11385,19 @@ msgid "" "database will remain unchanged." msgstr "目标数据库将完全根据源数据库同步。源数据库将保持不变。" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "设置变量失败" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "服务器变量和设置" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "会话值" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "全局值" @@ -11690,42 +11706,42 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" msgid "Wrong data" msgstr "无效数据" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL 查询结果" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "生成者" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "标签" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -11858,16 +11874,16 @@ msgstr "编辑索引" msgid "Index name:" msgstr "索引名称:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必须而且只能作为主键的名称!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "索引类型:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "添加 %s 个索引字段" @@ -12030,41 +12046,41 @@ msgstr "导出为 %s" msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "禁用 %s.%s 的追踪" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "立即禁用" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "启用 %s.%s 的追踪" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "立即启用" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "创建版本" @@ -12415,8 +12431,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "当前空闲查询缓存内存为总查询缓存大小的 %s%%。此值应高于 80%%" #: libraries/advisory_rules.txt:174 @@ -12545,8 +12561,8 @@ msgstr "根据系统内存,考虑增加 sort_buffer_size 和/或 read_rnd_buff #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "%s%% 的排序引发临时表创建,该值应低于 10%%。" #: libraries/advisory_rules.txt:211 @@ -13761,8 +13777,8 @@ msgstr "concurrent_insert 被设为 0" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" +#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "添加新用户" diff --git a/po/zh_TW.po b/po/zh_TW.po index bd6b242506..49939d02f9 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,15 +3,15 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-08-28 14:48+0200\n" +"POT-Creation-Date: 2012-09-03 19:56+0200\n" "PO-Revision-Date: 2012-08-27 11:48+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Chinese (Taiwan) \n" -"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.2\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Show all" msgstr "全部顯示" -#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2675 +#: browse_foreigners.php:77 libraries/CommonFunctions.class.php:2680 #: libraries/PDF.class.php:50 #: libraries/schema/Pdf_Relation_Schema.class.php:1220 #: libraries/schema/Pdf_Relation_Schema.class.php:1244 -#: libraries/schema/User_Schema.class.php:417 +#: libraries/schema/User_Schema.class.php:431 #: libraries/select_lang.lib.php:510 msgid "Page number:" msgstr "頁碼:" @@ -39,36 +39,36 @@ msgstr "" "無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" "更新" -#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3445 -#: libraries/CommonFunctions.class.php:3452 -#: libraries/CommonFunctions.class.php:3664 -#: libraries/CommonFunctions.class.php:3665 libraries/Menu.class.php:264 +#: browse_foreigners.php:168 libraries/CommonFunctions.class.php:3450 +#: libraries/CommonFunctions.class.php:3457 +#: libraries/CommonFunctions.class.php:3669 +#: libraries/CommonFunctions.class.php:3670 libraries/Menu.class.php:264 #: libraries/Menu.class.php:353 msgid "Search" msgstr "搜尋" -#: browse_foreigners.php:171 gis_data_editor.php:304 js/messages.php:231 -#: libraries/DbSearch.class.php:479 libraries/DisplayResults.class.php:1666 -#: libraries/TableSearch.class.php:1154 libraries/core.lib.php:534 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 gis_data_editor.php:349 js/messages.php:231 +#: libraries/DbSearch.class.php:488 libraries/DisplayResults.class.php:1666 +#: libraries/TableSearch.class.php:1157 libraries/core.lib.php:534 +#: libraries/display_change_password.lib.php:75 #: libraries/display_create_table.lib.php:61 -#: libraries/display_export.lib.php:377 libraries/display_import.lib.php:334 -#: libraries/insert_edit.lib.php:1570 libraries/insert_edit.lib.php:1605 +#: libraries/display_export.lib.php:378 libraries/display_import.lib.php:334 +#: libraries/insert_edit.lib.php:1572 libraries/insert_edit.lib.php:1607 #: libraries/operations.lib.php:39 libraries/operations.lib.php:82 #: libraries/operations.lib.php:213 libraries/operations.lib.php:259 #: libraries/operations.lib.php:640 libraries/operations.lib.php:692 #: libraries/operations.lib.php:739 libraries/operations.lib.php:1056 #: libraries/operations.lib.php:1349 #: libraries/plugins/auth/AuthenticationCookie.class.php:229 -#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:387 +#: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:386 #: libraries/rte/rte_events.lib.php:501 #: libraries/rte/rte_routines.lib.php:1030 #: libraries/rte/rte_routines.lib.php:1568 #: libraries/rte/rte_triggers.lib.php:387 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:225 -#: libraries/schema/User_Schema.class.php:467 -#: libraries/schema/User_Schema.class.php:507 +#: libraries/schema/User_Schema.class.php:177 +#: libraries/schema/User_Schema.class.php:239 +#: libraries/schema/User_Schema.class.php:488 +#: libraries/schema/User_Schema.class.php:528 #: libraries/server_privileges.lib.php:484 #: libraries/server_privileges.lib.php:1498 #: libraries/server_privileges.lib.php:1978 @@ -76,28 +76,28 @@ msgstr "搜尋" #: libraries/server_privileges.lib.php:3107 #: libraries/sql_query_form.lib.php:381 libraries/sql_query_form.lib.php:438 #: libraries/sql_query_form.lib.php:503 libraries/structure.lib.php:1603 -#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:734 +#: libraries/structure.lib.php:1630 libraries/tbl_properties.inc.php:738 #: pmd_pdf.php:155 prefs_manage.php:274 prefs_manage.php:324 -#: server_binlog.php:116 server_replication.php:265 server_replication.php:348 -#: server_replication.php:379 server_synchronize.php:1483 tbl_indexes.php:321 +#: server_binlog.php:116 server_replication.php:292 server_replication.php:375 +#: server_replication.php:406 server_synchronize.php:1483 tbl_indexes.php:327 #: tbl_tracking.php:497 tbl_tracking.php:639 view_create.php:221 #: view_operations.php:96 msgid "Go" msgstr "執行" #: browse_foreigners.php:186 browse_foreigners.php:190 -#: libraries/Index.class.php:463 tbl_tracking.php:373 +#: libraries/Index.class.php:563 tbl_tracking.php:373 msgid "Keyname" msgstr "鍵名" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:44 -#: server_plugins.php:131 server_status.php:1649 +#: server_plugins.php:131 server_status.php:1648 msgid "Description" msgstr "說明" -#: browse_foreigners.php:274 browse_foreigners.php:284 -#: browse_foreigners.php:300 browse_foreigners.php:312 +#: browse_foreigners.php:273 browse_foreigners.php:283 +#: browse_foreigners.php:299 browse_foreigners.php:311 msgid "Use this value" msgstr "使用此值" @@ -117,18 +117,18 @@ msgstr "建立資料庫 %1$s 成功" msgid "Database comment: " msgstr "資料庫註釋: " -#: db_datadict.php:154 libraries/operations.lib.php:785 +#: db_datadict.php:156 libraries/operations.lib.php:785 #: libraries/schema/Pdf_Relation_Schema.class.php:1365 -#: libraries/tbl_properties.inc.php:828 tbl_printview.php:120 +#: libraries/tbl_properties.inc.php:832 tbl_printview.php:120 msgid "Table comments" msgstr "表註釋" -#: db_datadict.php:163 libraries/DBQbe.class.php:385 -#: libraries/Index.class.php:467 libraries/TableSearch.class.php:198 -#: libraries/TableSearch.class.php:1202 libraries/insert_edit.lib.php:1589 +#: db_datadict.php:165 libraries/DBQbe.class.php:384 +#: libraries/Index.class.php:567 libraries/TableSearch.class.php:198 +#: libraries/TableSearch.class.php:1205 libraries/insert_edit.lib.php:1591 #: libraries/plugins/export/ExportHtmlword.class.php:275 #: libraries/plugins/export/ExportHtmlword.class.php:390 -#: libraries/plugins/export/ExportLatex.class.php:503 +#: libraries/plugins/export/ExportLatex.class.php:504 #: libraries/plugins/export/ExportOdt.class.php:357 #: libraries/plugins/export/ExportOdt.class.php:455 #: libraries/plugins/export/ExportTexytext.class.php:268 @@ -136,18 +136,18 @@ msgstr "表註釋" #: libraries/plugins/export/ExportTexytext.class.php:431 #: libraries/schema/Pdf_Relation_Schema.class.php:1391 #: libraries/schema/Pdf_Relation_Schema.class.php:1412 -#: libraries/tbl_properties.inc.php:323 tbl_indexes.php:237 +#: libraries/tbl_properties.inc.php:327 tbl_indexes.php:245 #: tbl_printview.php:133 tbl_relation.php:420 tbl_tracking.php:310 #: tbl_tracking.php:377 msgid "Column" msgstr "欄位" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:464 -#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:266 -#: libraries/insert_edit.lib.php:270 +#: db_datadict.php:166 db_printview.php:102 libraries/Index.class.php:564 +#: libraries/TableSearch.class.php:199 libraries/insert_edit.lib.php:268 +#: libraries/insert_edit.lib.php:272 #: libraries/plugins/export/ExportHtmlword.class.php:278 #: libraries/plugins/export/ExportHtmlword.class.php:393 -#: libraries/plugins/export/ExportLatex.class.php:504 +#: libraries/plugins/export/ExportLatex.class.php:505 #: libraries/plugins/export/ExportOdt.class.php:360 #: libraries/plugins/export/ExportOdt.class.php:458 #: libraries/plugins/export/ExportTexytext.class.php:269 @@ -164,11 +164,11 @@ msgstr "欄位" msgid "Type" msgstr "類型" -#: db_datadict.php:166 libraries/Index.class.php:470 -#: libraries/TableSearch.class.php:1203 libraries/insert_edit.lib.php:1598 +#: db_datadict.php:168 libraries/Index.class.php:570 +#: libraries/TableSearch.class.php:1206 libraries/insert_edit.lib.php:1600 #: libraries/plugins/export/ExportHtmlword.class.php:281 #: libraries/plugins/export/ExportHtmlword.class.php:396 -#: libraries/plugins/export/ExportLatex.class.php:505 +#: libraries/plugins/export/ExportLatex.class.php:506 #: libraries/plugins/export/ExportOdt.class.php:363 #: libraries/plugins/export/ExportOdt.class.php:461 #: libraries/plugins/export/ExportTexytext.class.php:270 @@ -180,9 +180,9 @@ msgstr "類型" msgid "Null" msgstr "空" -#: db_datadict.php:167 libraries/plugins/export/ExportHtmlword.class.php:284 +#: db_datadict.php:169 libraries/plugins/export/ExportHtmlword.class.php:284 #: libraries/plugins/export/ExportHtmlword.class.php:399 -#: libraries/plugins/export/ExportLatex.class.php:506 +#: libraries/plugins/export/ExportLatex.class.php:507 #: libraries/plugins/export/ExportOdt.class.php:366 #: libraries/plugins/export/ExportOdt.class.php:464 #: libraries/plugins/export/ExportTexytext.class.php:271 @@ -195,8 +195,8 @@ msgstr "空" msgid "Default" msgstr "預設" -#: db_datadict.php:171 libraries/plugins/export/ExportHtmlword.class.php:403 -#: libraries/plugins/export/ExportLatex.class.php:508 +#: db_datadict.php:173 libraries/plugins/export/ExportHtmlword.class.php:403 +#: libraries/plugins/export/ExportLatex.class.php:509 #: libraries/plugins/export/ExportOdt.class.php:468 #: libraries/plugins/export/ExportTexytext.class.php:373 #: libraries/schema/Pdf_Relation_Schema.class.php:1397 @@ -204,11 +204,11 @@ msgstr "預設" msgid "Links to" msgstr "連結到" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:175 db_printview.php:108 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 #: libraries/plugins/export/ExportHtmlword.class.php:408 -#: libraries/plugins/export/ExportLatex.class.php:511 +#: libraries/plugins/export/ExportLatex.class.php:512 #: libraries/plugins/export/ExportOdt.class.php:473 #: libraries/plugins/export/ExportTexytext.class.php:376 #: libraries/schema/Pdf_Relation_Schema.class.php:1408 @@ -217,12 +217,12 @@ msgstr "連結到" msgid "Comments" msgstr "註釋" -#: db_datadict.php:237 js/messages.php:251 libraries/Index.class.php:360 -#: libraries/Index.class.php:387 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:251 libraries/Index.class.php:431 +#: libraries/Index.class.php:470 libraries/Index.class.php:840 #: libraries/config.values.php:52 libraries/config.values.php:67 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:328 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:328 #: libraries/plugins/export/ExportHtmlword.class.php:630 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:723 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -233,23 +233,23 @@ msgstr "註釋" #: libraries/server_privileges.lib.php:2172 #: libraries/server_privileges.lib.php:2500 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 -#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:373 -#: sql.php:440 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 +#: libraries/user_preferences.lib.php:309 prefs_manage.php:131 sql.php:390 +#: sql.php:457 tbl_printview.php:192 tbl_tracking.php:334 tbl_tracking.php:390 #: tbl_tracking.php:395 msgid "No" msgstr "否" -#: db_datadict.php:237 js/messages.php:250 libraries/Index.class.php:361 -#: libraries/Index.class.php:386 libraries/Index.class.php:740 +#: db_datadict.php:239 js/messages.php:250 libraries/Index.class.php:432 +#: libraries/Index.class.php:469 libraries/Index.class.php:840 #: libraries/config.values.php:51 libraries/config.values.php:66 -#: libraries/config/FormDisplay.tpl.php:256 libraries/mult_submits.inc.php:71 +#: libraries/config/FormDisplay.tpl.php:258 libraries/mult_submits.inc.php:71 #: libraries/mult_submits.inc.php:103 libraries/mult_submits.inc.php:112 #: libraries/mult_submits.inc.php:117 libraries/mult_submits.inc.php:122 #: libraries/mult_submits.inc.php:127 libraries/mult_submits.inc.php:290 #: libraries/mult_submits.inc.php:303 libraries/mult_submits.inc.php:327 #: libraries/mult_submits.inc.php:335 #: libraries/plugins/export/ExportHtmlword.class.php:631 -#: libraries/plugins/export/ExportLatex.class.php:582 +#: libraries/plugins/export/ExportLatex.class.php:583 #: libraries/plugins/export/ExportOdt.class.php:724 #: libraries/plugins/export/ExportTexytext.class.php:565 #: libraries/schema/Pdf_Relation_Schema.class.php:1444 @@ -261,8 +261,8 @@ msgstr "否" #: libraries/server_privileges.lib.php:2497 #: libraries/server_privileges.lib.php:2514 libraries/structure.lib.php:1284 #: libraries/user_preferences.lib.php:307 prefs_manage.php:130 -#: server_databases.php:104 server_databases.php:111 sql.php:439 -#: tbl_printview.php:193 tbl_structure.php:50 tbl_tracking.php:334 +#: server_databases.php:104 server_databases.php:111 sql.php:456 +#: tbl_printview.php:193 tbl_structure.php:51 tbl_tracking.php:334 #: tbl_tracking.php:388 tbl_tracking.php:393 msgid "Yes" msgstr "是" @@ -272,45 +272,45 @@ msgid "View dump (schema) of database" msgstr "查看資料庫的轉存(大綱)" #: db_export.php:33 db_printview.php:93 db_tracking.php:52 export.php:415 -#: libraries/DBQbe.class.php:289 navigation.php:280 +#: libraries/DBQbe.class.php:288 navigation.php:280 msgid "No tables found in database." msgstr "資料庫中沒有資料。" -#: db_export.php:42 libraries/DbSearch.class.php:459 server_export.php:26 +#: db_export.php:42 libraries/DbSearch.class.php:468 server_export.php:26 msgid "Select All" msgstr "全選" -#: db_export.php:44 libraries/DbSearch.class.php:465 server_export.php:28 +#: db_export.php:44 libraries/DbSearch.class.php:474 server_export.php:28 msgid "Unselect All" msgstr "全不選" -#: db_operations.php:45 tbl_create.php:22 +#: db_operations.php:46 tbl_create.php:22 msgid "The database name is empty!" msgstr "資料庫名不能爲空!" -#: db_operations.php:129 +#: db_operations.php:130 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "資料庫 %1$s 已變更名稱為 %2$s" -#: db_operations.php:133 +#: db_operations.php:134 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "資料庫 %1$s 已複製爲 %2$s" -#: db_operations.php:256 +#: db_operations.php:260 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因." -#: db_printview.php:100 db_tracking.php:82 db_tracking.php:190 +#: db_printview.php:100 db_tracking.php:82 db_tracking.php:201 #: libraries/Menu.class.php:191 libraries/config/messages.inc.php:514 #: libraries/plugins/export/ExportXml.class.php:456 #: libraries/plugins/export/PMA_ExportPdf.class.php:96 #: libraries/rte/rte_list.lib.php:65 libraries/rte/rte_triggers.lib.php:322 -#: libraries/schema/User_Schema.class.php:293 +#: libraries/schema/User_Schema.class.php:307 #: libraries/server_privileges.lib.php:2006 #: libraries/server_privileges.lib.php:2241 #: libraries/server_privileges.lib.php:2900 libraries/structure.lib.php:768 @@ -320,14 +320,14 @@ msgstr "表" #: db_printview.php:101 db_tables_search.php:26 db_tables_search.php:58 #: libraries/Table.class.php:301 libraries/build_html_for_db.lib.php:31 -#: libraries/import.lib.php:179 libraries/structure.lib.php:779 +#: libraries/import.lib.php:181 libraries/structure.lib.php:779 #: libraries/structure.lib.php:1766 libraries/structure.lib.php:1950 #: libraries/structure.lib.php:2094 navigation.php:633 navigation.php:672 -#: sql.php:1003 tbl_printview.php:370 +#: sql.php:1043 tbl_printview.php:376 msgid "Rows" msgstr "行數" -#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:238 +#: db_printview.php:105 libraries/structure.lib.php:798 tbl_indexes.php:246 msgid "Size" msgstr "大小" @@ -340,7 +340,7 @@ msgstr "使用中" #: libraries/plugins/export/ExportSql.class.php:952 #: libraries/schema/Pdf_Relation_Schema.class.php:1370 #: libraries/structure.lib.php:809 libraries/structure.lib.php:1805 -#: tbl_printview.php:418 +#: tbl_printview.php:424 msgid "Creation" msgstr "建立時間" @@ -348,7 +348,7 @@ msgstr "建立時間" #: libraries/plugins/export/ExportSql.class.php:965 #: libraries/schema/Pdf_Relation_Schema.class.php:1375 #: libraries/structure.lib.php:816 libraries/structure.lib.php:1812 -#: tbl_printview.php:432 +#: tbl_printview.php:438 msgid "Last update" msgstr "最後更新" @@ -356,7 +356,7 @@ msgstr "最後更新" #: libraries/plugins/export/ExportSql.class.php:978 #: libraries/schema/Pdf_Relation_Schema.class.php:1380 #: libraries/structure.lib.php:823 libraries/structure.lib.php:1820 -#: tbl_printview.php:446 +#: tbl_printview.php:452 msgid "Last check" msgstr "最後檢查" @@ -370,7 +370,7 @@ msgstr[0] "%s 張資料表" msgid "You have to choose at least one column to display" msgstr "您至少需要選擇一個欄位" -#: db_qbe.php:59 +#: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" msgstr "切換至 %svisual builder%s" @@ -402,9 +402,9 @@ msgstr "已追蹤的表" #: libraries/plugins/export/PMA_ExportPdf.class.php:95 #: libraries/server_privileges.lib.php:1996 #: libraries/server_privileges.lib.php:2241 -#: libraries/server_privileges.lib.php:2891 server_databases.php:194 -#: server_status.php:1291 server_synchronize.php:1451 -#: server_synchronize.php:1455 sql.php:997 tbl_tracking.php:718 +#: libraries/server_privileges.lib.php:2891 server_databases.php:200 +#: server_status.php:1290 server_synchronize.php:1451 +#: server_synchronize.php:1455 sql.php:1037 tbl_tracking.php:718 msgid "Database" msgstr "資料庫" @@ -422,66 +422,66 @@ msgstr "更新" #: db_tracking.php:86 js/messages.php:185 libraries/Menu.class.php:459 #: libraries/rte/rte_events.lib.php:388 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1303 sql.php:1071 tbl_tracking.php:723 +#: server_status.php:1302 sql.php:1111 tbl_tracking.php:723 msgid "Status" msgstr "狀態" -#: db_tracking.php:87 libraries/Index.class.php:461 +#: db_tracking.php:87 libraries/Index.class.php:561 #: libraries/rte/rte_list.lib.php:53 libraries/rte/rte_list.lib.php:67 #: libraries/rte/rte_list.lib.php:79 libraries/server_privileges.lib.php:1596 #: libraries/server_privileges.lib.php:2251 #: libraries/server_privileges.lib.php:2421 libraries/structure.lib.php:776 -#: libraries/structure.lib.php:1213 server_databases.php:229 +#: libraries/structure.lib.php:1213 server_databases.php:235 msgid "Action" msgstr "動作" -#: db_tracking.php:88 libraries/DBQbe.class.php:487 -#: libraries/DisplayResults.class.php:910 tbl_change.php:218 +#: db_tracking.php:88 libraries/DBQbe.class.php:486 +#: libraries/DisplayResults.class.php:910 tbl_change.php:222 #: tbl_tracking.php:724 msgid "Show" msgstr "顯示" -#: db_tracking.php:98 js/messages.php:34 +#: db_tracking.php:100 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "刪除追蹤資料" -#: db_tracking.php:103 libraries/CommonFunctions.class.php:3669 -#: libraries/CommonFunctions.class.php:3670 libraries/Index.class.php:528 +#: db_tracking.php:106 libraries/CommonFunctions.class.php:3674 +#: libraries/CommonFunctions.class.php:3675 libraries/Index.class.php:628 #: libraries/structure.lib.php:311 libraries/structure.lib.php:1394 #: libraries/structure.lib.php:2257 libraries/structure.lib.php:2259 -#: server_databases.php:302 +#: server_databases.php:327 msgid "Drop" msgstr "刪除" -#: db_tracking.php:120 tbl_tracking.php:675 tbl_tracking.php:733 +#: db_tracking.php:123 tbl_tracking.php:675 tbl_tracking.php:733 msgid "active" msgstr "啓用" -#: db_tracking.php:122 tbl_tracking.php:677 tbl_tracking.php:735 +#: db_tracking.php:125 tbl_tracking.php:677 tbl_tracking.php:735 msgid "not active" msgstr "停用" -#: db_tracking.php:137 +#: db_tracking.php:141 msgid "Versions" msgstr "版本" -#: db_tracking.php:138 tbl_tracking.php:481 tbl_tracking.php:753 +#: db_tracking.php:142 tbl_tracking.php:481 tbl_tracking.php:755 msgid "Tracking report" msgstr "追蹤報告" -#: db_tracking.php:139 tbl_tracking.php:282 tbl_tracking.php:755 +#: db_tracking.php:143 tbl_tracking.php:282 tbl_tracking.php:759 msgid "Structure snapshot" msgstr "結構快照" -#: db_tracking.php:185 +#: db_tracking.php:196 msgid "Untracked tables" msgstr "未追蹤的表" -#: db_tracking.php:204 libraries/structure.lib.php:1533 +#: db_tracking.php:215 libraries/structure.lib.php:1533 msgid "Track table" msgstr "追蹤資料表" -#: db_tracking.php:230 +#: db_tracking.php:243 msgid "Database Log" msgstr "資料庫日誌" @@ -497,12 +497,12 @@ msgstr "選擇的匯出的檔案格式" msgid "Bad parameters!" msgstr "錯誤的參數!" -#: export.php:195 export.php:226 export.php:782 +#: export.php:195 export.php:226 export.php:786 #, php-format msgid "Insufficient space to save the file %s." msgstr "沒有足夠的空間儲存檔案 %s." -#: export.php:363 +#: export.php:364 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -513,7 +513,7 @@ msgstr "檔案 %s 已存在, 請更改檔案名稱或選擇「覆寫己存在檔 msgid "The web server does not have permission to save the file %s." msgstr "網站伺服器沒有儲存 %s 檔案的權限" -#: export.php:788 +#: export.php:792 #, php-format msgid "Dump has been saved to file %s." msgstr "備份資料已儲存至檔案 %s." @@ -522,126 +522,129 @@ msgstr "備份資料已儲存至檔案 %s." msgid "Invalid export type" msgstr "無效的輸出類型" -#: gis_data_editor.php:75 +#: gis_data_editor.php:92 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "%s 欄位的值" -#: gis_data_editor.php:104 tbl_gis_visualization.php:171 +#: gis_data_editor.php:127 tbl_gis_visualization.php:171 msgid "Use OpenStreetMaps as Base Layer" msgstr "使用OpenStreetMaps" -#: gis_data_editor.php:124 +#: gis_data_editor.php:147 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:141 js/messages.php:326 +#: gis_data_editor.php:167 js/messages.php:326 #: libraries/DisplayResults.class.php:1650 msgid "Geometry" msgstr "" -#: gis_data_editor.php:161 js/messages.php:322 +#: gis_data_editor.php:187 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 -#: gis_data_editor.php:286 js/messages.php:320 +#: gis_data_editor.php:188 gis_data_editor.php:213 gis_data_editor.php:264 +#: gis_data_editor.php:326 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 -#: gis_data_editor.php:288 js/messages.php:321 +#: gis_data_editor.php:190 gis_data_editor.php:215 gis_data_editor.php:266 +#: gis_data_editor.php:328 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 +#: gis_data_editor.php:211 gis_data_editor.php:262 gis_data_editor.php:324 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 +#: gis_data_editor.php:220 gis_data_editor.php:270 gis_data_editor.php:332 #: js/messages.php:329 #, fuzzy #| msgid "Add index" msgid "Add a point" msgstr "新增索引" -#: gis_data_editor.php:209 js/messages.php:324 +#: gis_data_editor.php:237 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "資料分行使用字元:" -#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 +#: gis_data_editor.php:240 gis_data_editor.php:305 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 +#: gis_data_editor.php:242 gis_data_editor.php:307 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:241 +#: gis_data_editor.php:274 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "新增新使用者" -#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 +#: gis_data_editor.php:274 gis_data_editor.php:335 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "新增新使用者" -#: gis_data_editor.php:255 js/messages.php:325 +#: gis_data_editor.php:290 js/messages.php:325 msgid "Polygon" msgstr "多邊形" -#: gis_data_editor.php:295 js/messages.php:331 +#: gis_data_editor.php:338 js/messages.php:331 #, fuzzy #| msgid "Add column" msgid "Add a polygon" msgstr "新增欄位" -#: gis_data_editor.php:299 +#: gis_data_editor.php:343 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "新增伺服器" -#: gis_data_editor.php:306 +#: gis_data_editor.php:351 msgid "Output" msgstr "輸出" -#: gis_data_editor.php:307 +#: gis_data_editor.php:354 msgid "" -"Chose \"GeomFromText\" from the \"Function\" column and paste the below " -"string into the \"Value\" field" +"Choose \"GeomFromText\" from the \"Function\" column and paste the string " +"below into the \"Value\" field" msgstr "" -#: import.php:94 -#, php-format +#: import.php:95 +#, fuzzy, php-format +#| msgid "" +#| "You probably tried to upload too large file. Please refer to %" +#| "sdocumentation%s for ways to workaround this limit." 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 a file that is too large. Please refer to %" +"sdocumentation%s for a workaround for this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." -#: import.php:232 import.php:485 +#: import.php:236 import.php:489 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:247 import.php:481 +#: import.php:251 import.php:485 msgid "The bookmark has been deleted." msgstr "書籤已被刪除." -#: import.php:342 import.php:395 libraries/File.class.php:426 -#: libraries/File.class.php:517 +#: import.php:346 import.php:399 libraries/File.class.php:432 +#: libraries/File.class.php:525 msgid "File could not be read" msgstr "檔案無法讀取" -#: import.php:350 import.php:359 import.php:378 import.php:387 -#: libraries/File.class.php:578 +#: import.php:354 import.php:363 import.php:382 import.php:391 +#: libraries/File.class.php:604 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -650,7 +653,7 @@ msgstr "" "您試圖載入無法支援的壓縮檔 (%s). 可能是檔案格式尚未被支援或該檔案的支援功能在" "您的設定檔中被停用." -#: import.php:400 +#: import.php:404 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 " @@ -659,33 +662,33 @@ msgstr "" "沒有接收到要匯入的資料。可能是檔案名稱沒有送出,也可能是檔案大小超出 PHP 限制" "參見 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:418 +#: import.php:422 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:454 libraries/display_import.lib.php:29 +#: import.php:458 libraries/display_import.lib.php:30 msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入插件,請檢查您的安裝!" -#: import.php:488 sql.php:1109 +#: import.php:492 sql.php:1149 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" -#: import.php:496 import.php:502 +#: import.php:500 import.php:506 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "匯入成功, 共 %d 個語法被執行." -#: import.php:511 +#: import.php:515 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "指令已逾時, 如果想完成匯入, 請重新送出相同檔案, 送出後匯入動作會繼續執行." -#: import.php:513 +#: import.php:517 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." @@ -693,9 +696,9 @@ msgstr "" "在最後一次執行時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 phpMyAdmin " "將無法完成匯入操作" -#: import.php:541 libraries/DisplayResults.class.php:4547 +#: import.php:547 libraries/DisplayResults.class.php:4547 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1335 -#: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 +#: libraries/sql_query_form.lib.php:116 tbl_operations.php:183 #: tbl_relation.php:299 tbl_row_action.php:122 view_operations.php:55 msgid "Your SQL query has been executed successfully" msgstr "您的 SQL 語法已順利執行" @@ -709,7 +712,7 @@ msgstr "返回" msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." -#: js/messages.php:27 libraries/import.lib.php:116 sql.php:313 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:332 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" @@ -719,7 +722,7 @@ msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:418 +#: js/messages.php:31 libraries/mult_submits.inc.php:310 sql.php:435 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -763,7 +766,7 @@ msgstr "新增索引" msgid "Edit Index" msgstr "編輯模式" -#: js/messages.php:44 tbl_indexes.php:326 +#: js/messages.php:44 tbl_indexes.php:332 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %d column(s) to index" @@ -814,24 +817,24 @@ msgstr "關閉" #: js/messages.php:61 js/messages.php:284 #: libraries/CommonFunctions.class.php:714 -#: libraries/CommonFunctions.class.php:1344 -#: libraries/CommonFunctions.class.php:3673 -#: libraries/CommonFunctions.class.php:3674 -#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:491 +#: libraries/CommonFunctions.class.php:1349 +#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3679 +#: libraries/DisplayResults.class.php:3313 libraries/Index.class.php:591 #: libraries/config/messages.inc.php:490 -#: libraries/schema/User_Schema.class.php:215 setup/frames/index.inc.php:147 +#: libraries/schema/User_Schema.class.php:229 setup/frames/index.inc.php:147 msgid "Edit" msgstr "編輯" -#: js/messages.php:62 server_status.php:831 +#: js/messages.php:62 server_status.php:830 msgid "Live traffic chart" msgstr "即時流量圖表" -#: js/messages.php:63 server_status.php:834 +#: js/messages.php:63 server_status.php:833 msgid "Live conn./process chart" msgstr "即時連線圖表" -#: js/messages.php:64 server_status.php:856 +#: js/messages.php:64 server_status.php:855 msgid "Live query chart" msgstr "即時查詢圖表" @@ -841,24 +844,24 @@ msgstr "靜態資料" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:172 libraries/structure.lib.php:2399 -#: server_databases.php:257 server_status.php:1182 server_status.php:1251 -#: tbl_printview.php:331 +#: libraries/engines/innodb.lib.php:174 libraries/structure.lib.php:2399 +#: server_databases.php:271 server_status.php:1181 server_status.php:1250 +#: tbl_printview.php:337 msgid "Total" msgstr "總計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:636 server_status.php:1056 +#: js/messages.php:70 server_status.php:635 server_status.php:1055 msgid "Other" msgstr "其他" #. l10n: Thousands separator -#: js/messages.php:72 libraries/CommonFunctions.class.php:1617 +#: js/messages.php:72 libraries/CommonFunctions.class.php:1622 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/CommonFunctions.class.php:1619 +#: js/messages.php:74 libraries/CommonFunctions.class.php:1624 msgid "." msgstr "." @@ -878,7 +881,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)" msgid "Connections since last refresh" msgstr "最後一次連線" -#: js/messages.php:80 js/messages.php:118 server_status.php:1351 +#: js/messages.php:80 js/messages.php:118 server_status.php:1350 msgid "Processes" msgstr "處理" @@ -898,7 +901,7 @@ msgstr "最後一次連線" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:809 +#: js/messages.php:87 server_status.php:808 msgid "Query statistics" msgstr "查詢統計" @@ -948,13 +951,13 @@ msgstr "系統Swap" #. l10n: shortcuts for Megabyte #: js/messages.php:100 js/messages.php:123 -#: libraries/CommonFunctions.class.php:1566 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1571 server_status.php:1868 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte #: js/messages.php:101 js/messages.php:122 -#: libraries/CommonFunctions.class.php:1564 server_status.php:1869 +#: libraries/CommonFunctions.class.php:1569 server_status.php:1868 msgid "KiB" msgstr "KB" @@ -1012,32 +1015,32 @@ msgstr "Bytes 送出" msgid "Bytes received" msgstr "Bytes 已接收" -#: js/messages.php:117 server_status.php:1205 +#: js/messages.php:117 server_status.php:1204 msgid "Connections" msgstr "連線" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/CommonFunctions.class.php:1562 +#: js/messages.php:121 libraries/CommonFunctions.class.php:1567 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/CommonFunctions.class.php:1568 +#: js/messages.php:124 libraries/CommonFunctions.class.php:1573 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/CommonFunctions.class.php:1570 +#: js/messages.php:125 libraries/CommonFunctions.class.php:1575 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/CommonFunctions.class.php:1572 +#: js/messages.php:126 libraries/CommonFunctions.class.php:1577 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/CommonFunctions.class.php:1574 +#: js/messages.php:127 libraries/CommonFunctions.class.php:1579 msgid "EiB" msgstr "EB" @@ -1055,11 +1058,11 @@ msgstr "%s 張資料表" msgid "Questions" msgstr "版本" -#: js/messages.php:132 server_status.php:1142 +#: js/messages.php:132 server_status.php:1141 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1738 +#: js/messages.php:133 libraries/Menu.class.php:477 server_status.php:1737 msgid "Settings" msgstr "設定" @@ -1082,12 +1085,12 @@ msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" #: js/messages.php:139 libraries/DisplayResults.class.php:1295 -#: libraries/TableSearch.class.php:853 libraries/TableSearch.class.php:997 +#: libraries/TableSearch.class.php:856 libraries/TableSearch.class.php:1000 #: libraries/display_export.lib.php:333 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:2141 -#: libraries/tbl_properties.inc.php:652 pmd_general.php:551 -#: server_status.php:1429 server_status.php:1886 +#: libraries/tbl_properties.inc.php:656 pmd_general.php:551 +#: server_status.php:1428 server_status.php:1885 msgid "None" msgstr "無" @@ -1186,7 +1189,7 @@ msgstr "管理我的設定" msgid "Current settings" msgstr "更多設定" -#: js/messages.php:164 server_status.php:1834 +#: js/messages.php:164 server_status.php:1833 #, fuzzy #| msgid "Report title:" msgid "Chart Title" @@ -1280,7 +1283,7 @@ msgstr "SQL說明 " #: libraries/plugins/export/ExportHtmlword.class.php:483 #: libraries/plugins/export/ExportOdt.class.php:561 #: libraries/plugins/export/ExportTexytext.class.php:434 -#: libraries/rte/rte_list.lib.php:68 server_status.php:1299 sql.php:1072 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1298 sql.php:1112 msgid "Time" msgstr "時間" @@ -1391,8 +1394,8 @@ msgstr "" #: js/messages.php:212 libraries/Menu.class.php:289 #: libraries/Menu.class.php:376 libraries/Menu.class.php:473 -#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:184 -#: prefs_manage.php:240 server_status.php:1787 setup/frames/menu.inc.php:21 +#: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:186 +#: prefs_manage.php:240 server_status.php:1786 setup/frames/menu.inc.php:21 msgid "Import" msgstr "輸入" @@ -1633,12 +1636,12 @@ msgstr "最長執行時間" msgid "%d is not valid row number." msgstr "%d 不是有效行數" -#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:387 -#: libraries/insert_edit.lib.php:1486 -#: libraries/schema/User_Schema.class.php:373 -#: libraries/tbl_properties.inc.php:896 setup/frames/config.inc.php:39 +#: js/messages.php:291 libraries/config/FormDisplay.tpl.php:389 +#: libraries/insert_edit.lib.php:1488 +#: libraries/schema/User_Schema.class.php:387 +#: libraries/tbl_properties.inc.php:900 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:246 tbl_gis_visualization.php:192 -#: tbl_indexes.php:313 tbl_relation.php:588 +#: tbl_indexes.php:319 tbl_relation.php:588 msgid "Save" msgstr "儲存" @@ -1702,8 +1705,8 @@ msgstr "查詢結果選項" msgid "Data point content" msgstr "資料指標大小" -#: js/messages.php:318 tbl_change.php:244 tbl_indexes.php:252 -#: tbl_indexes.php:287 +#: js/messages.php:318 tbl_change.php:248 tbl_indexes.php:260 +#: tbl_indexes.php:293 msgid "Ignore" msgstr "忽略" @@ -1812,7 +1815,7 @@ msgstr "更新行" msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:364 libraries/replication_gui.lib.php:381 +#: js/messages.php:364 libraries/replication_gui.lib.php:380 msgid "Generate" msgstr "產生" @@ -1915,63 +1918,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:427 libraries/CommonFunctions.class.php:1779 +#: js/messages.php:427 libraries/CommonFunctions.class.php:1784 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:429 libraries/CommonFunctions.class.php:1781 +#: js/messages.php:429 libraries/CommonFunctions.class.php:1786 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:431 libraries/CommonFunctions.class.php:1783 +#: js/messages.php:431 libraries/CommonFunctions.class.php:1788 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:433 libraries/CommonFunctions.class.php:1785 +#: js/messages.php:433 libraries/CommonFunctions.class.php:1790 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:435 libraries/CommonFunctions.class.php:1787 +#: js/messages.php:435 libraries/CommonFunctions.class.php:1792 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:437 libraries/CommonFunctions.class.php:1789 +#: js/messages.php:437 libraries/CommonFunctions.class.php:1794 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:439 libraries/CommonFunctions.class.php:1791 +#: js/messages.php:439 libraries/CommonFunctions.class.php:1796 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:441 libraries/CommonFunctions.class.php:1793 +#: js/messages.php:441 libraries/CommonFunctions.class.php:1798 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:443 libraries/CommonFunctions.class.php:1795 +#: js/messages.php:443 libraries/CommonFunctions.class.php:1800 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:445 libraries/CommonFunctions.class.php:1797 +#: js/messages.php:445 libraries/CommonFunctions.class.php:1802 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:447 libraries/CommonFunctions.class.php:1799 +#: js/messages.php:447 libraries/CommonFunctions.class.php:1804 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:449 libraries/CommonFunctions.class.php:1801 +#: js/messages.php:449 libraries/CommonFunctions.class.php:1806 msgid "Dec" msgstr "十二月" @@ -2009,32 +2012,32 @@ msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:470 libraries/CommonFunctions.class.php:1806 +#: js/messages.php:470 libraries/CommonFunctions.class.php:1811 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:472 libraries/CommonFunctions.class.php:1808 +#: js/messages.php:472 libraries/CommonFunctions.class.php:1813 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:474 libraries/CommonFunctions.class.php:1810 +#: js/messages.php:474 libraries/CommonFunctions.class.php:1815 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:476 libraries/CommonFunctions.class.php:1812 +#: js/messages.php:476 libraries/CommonFunctions.class.php:1817 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:478 libraries/CommonFunctions.class.php:1814 +#: js/messages.php:478 libraries/CommonFunctions.class.php:1819 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:480 libraries/CommonFunctions.class.php:1816 +#: js/messages.php:480 libraries/CommonFunctions.class.php:1821 msgid "Sat" msgstr "週六" @@ -2150,16 +2153,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:986 +#: libraries/Advisor.class.php:425 server_status.php:985 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:981 +#: libraries/Advisor.class.php:428 server_status.php:980 msgid "per minute" msgstr "每分鐘" -#: libraries/Advisor.class.php:431 server_status.php:977 -#: server_status.php:1013 server_status.php:1143 server_status.php:1206 +#: libraries/Advisor.class.php:431 server_status.php:976 +#: server_status.php:1012 server_status.php:1142 server_status.php:1205 msgid "per hour" msgstr "每小時" @@ -2176,7 +2179,7 @@ msgstr "最大限制:%s %s" #: libraries/CommonFunctions.class.php:564 #: libraries/config/FormDisplay.tpl.php:147 #: libraries/display_export.lib.php:248 libraries/engines/pbxt.lib.php:114 -#: libraries/relation.lib.php:90 main.php:290 server_variables.php:130 +#: libraries/relation.lib.php:90 main.php:290 server_variables.php:131 msgid "Documentation" msgstr "文件" @@ -2199,14 +2202,14 @@ msgid "en" msgstr "zh" #: libraries/CommonFunctions.class.php:676 libraries/Message.class.php:199 -#: libraries/core.lib.php:217 libraries/import.lib.php:169 -#: libraries/insert_edit.lib.php:1205 tbl_operations.php:186 +#: libraries/core.lib.php:217 libraries/import.lib.php:171 +#: libraries/insert_edit.lib.php:1207 tbl_operations.php:185 #: tbl_relation.php:297 view_operations.php:55 msgid "Error" msgstr "錯誤" -#: libraries/CommonFunctions.class.php:689 server_status.php:619 -#: server_status.php:1307 sql.php:1000 +#: libraries/CommonFunctions.class.php:689 server_status.php:618 +#: server_status.php:1306 sql.php:1040 msgid "SQL query" msgstr "SQL 查詢" @@ -2224,85 +2227,85 @@ msgstr "SQL 查詢" msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/CommonFunctions.class.php:1268 +#: libraries/CommonFunctions.class.php:1273 msgid "Failed to connect to SQL validator!" msgstr "連線到 SQL 檢驗器失敗!" -#: libraries/CommonFunctions.class.php:1310 +#: libraries/CommonFunctions.class.php:1315 #: libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL說明" -#: libraries/CommonFunctions.class.php:1318 +#: libraries/CommonFunctions.class.php:1323 msgid "Skip Explain SQL" msgstr "略過SQL說明" -#: libraries/CommonFunctions.class.php:1357 +#: libraries/CommonFunctions.class.php:1362 msgid "Without PHP Code" msgstr "無 PHP 程式碼" -#: libraries/CommonFunctions.class.php:1360 +#: libraries/CommonFunctions.class.php:1365 #: libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/CommonFunctions.class.php:1372 libraries/DBQbe.class.php:1348 +#: libraries/CommonFunctions.class.php:1377 libraries/DBQbe.class.php:1351 msgid "Submit Query" msgstr "送出查詢" -#: libraries/CommonFunctions.class.php:1386 -#: libraries/config/messages.inc.php:492 server_status.php:819 -#: server_status.php:845 server_status.php:869 +#: libraries/CommonFunctions.class.php:1391 +#: libraries/config/messages.inc.php:492 server_status.php:818 +#: server_status.php:844 server_status.php:868 msgid "Refresh" msgstr "重新整理" -#: libraries/CommonFunctions.class.php:1396 +#: libraries/CommonFunctions.class.php:1401 msgid "Skip Validate SQL" msgstr "略過檢驗 SQL" -#: libraries/CommonFunctions.class.php:1399 +#: libraries/CommonFunctions.class.php:1404 #: libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "檢驗 SQL" -#: libraries/CommonFunctions.class.php:1461 +#: libraries/CommonFunctions.class.php:1466 msgid "Inline edit of this query" msgstr "在本頁面編輯此查詢" -#: libraries/CommonFunctions.class.php:1463 +#: libraries/CommonFunctions.class.php:1468 msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/CommonFunctions.class.php:1534 sql.php:1067 +#: libraries/CommonFunctions.class.php:1539 sql.php:1107 msgid "Profiling" msgstr "概要" #. l10n: Short week day name -#: libraries/CommonFunctions.class.php:1804 +#: libraries/CommonFunctions.class.php:1809 msgctxt "Short week day name" msgid "Sun" msgstr "週日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/CommonFunctions.class.php:1820 +#: libraries/CommonFunctions.class.php:1825 #: libraries/plugins/transformations/abstract/DateFormatTransformationsPlugin.class.php:69 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/CommonFunctions.class.php:2170 +#: libraries/CommonFunctions.class.php:2175 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/CommonFunctions.class.php:2262 +#: libraries/CommonFunctions.class.php:2267 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "一般" -#: libraries/CommonFunctions.class.php:2686 -#: libraries/CommonFunctions.class.php:2690 +#: libraries/CommonFunctions.class.php:2691 +#: libraries/CommonFunctions.class.php:2695 #: libraries/DisplayResults.class.php:782 #, fuzzy #| msgid "Begin" @@ -2310,10 +2313,10 @@ msgctxt "First page" msgid "Begin" msgstr "開始" -#: libraries/CommonFunctions.class.php:2688 -#: libraries/CommonFunctions.class.php:2691 -#: libraries/DisplayResults.class.php:785 server_binlog.php:142 -#: server_binlog.php:144 +#: libraries/CommonFunctions.class.php:2693 +#: libraries/CommonFunctions.class.php:2696 +#: libraries/DisplayResults.class.php:785 server_binlog.php:143 +#: server_binlog.php:145 #, fuzzy #| msgid "Previous" msgctxt "Previous page" @@ -2321,18 +2324,18 @@ msgid "Previous" msgstr "上一個" # 這應該使用於選擇日期的小月曆 -#: libraries/CommonFunctions.class.php:2723 -#: libraries/CommonFunctions.class.php:2726 -#: libraries/DisplayResults.class.php:842 server_binlog.php:177 -#: server_binlog.php:179 +#: libraries/CommonFunctions.class.php:2728 +#: libraries/CommonFunctions.class.php:2731 +#: libraries/DisplayResults.class.php:842 server_binlog.php:178 +#: server_binlog.php:180 #, fuzzy #| msgid "Next" msgctxt "Next page" msgid "Next" msgstr "下個月" -#: libraries/CommonFunctions.class.php:2724 -#: libraries/CommonFunctions.class.php:2727 +#: libraries/CommonFunctions.class.php:2729 +#: libraries/CommonFunctions.class.php:2732 #: libraries/DisplayResults.class.php:870 #, fuzzy #| msgid "End" @@ -2340,107 +2343,107 @@ msgctxt "Last page" msgid "End" msgstr "結束" -#: libraries/CommonFunctions.class.php:2803 +#: libraries/CommonFunctions.class.php:2808 #, php-format msgid "Jump to database "%s"." msgstr "跳轉到資料庫“%s”" -#: libraries/CommonFunctions.class.php:2828 +#: libraries/CommonFunctions.class.php:2833 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" -#: libraries/CommonFunctions.class.php:3012 +#: libraries/CommonFunctions.class.php:3017 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "點擊選取" -#: libraries/CommonFunctions.class.php:3443 -#: libraries/CommonFunctions.class.php:3450 -#: libraries/CommonFunctions.class.php:3668 libraries/Menu.class.php:257 +#: libraries/CommonFunctions.class.php:3448 +#: libraries/CommonFunctions.class.php:3455 +#: libraries/CommonFunctions.class.php:3673 libraries/Menu.class.php:257 #: libraries/Menu.class.php:345 libraries/config/setup.forms.php:295 #: libraries/config/setup.forms.php:332 libraries/config/setup.forms.php:358 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 -#: libraries/import.lib.php:1223 -#: libraries/plugins/export/ExportLatex.class.php:480 +#: libraries/import.lib.php:1225 +#: libraries/plugins/export/ExportLatex.class.php:481 #: libraries/server_privileges.lib.php:761 -#: libraries/tbl_properties.inc.php:756 pmd_general.php:179 -#: server_replication.php:345 tbl_tracking.php:306 +#: libraries/tbl_properties.inc.php:760 pmd_general.php:179 +#: server_replication.php:372 tbl_tracking.php:306 msgid "Structure" msgstr "結構" -#: libraries/CommonFunctions.class.php:3444 -#: libraries/CommonFunctions.class.php:3451 libraries/Menu.class.php:261 +#: libraries/CommonFunctions.class.php:3449 +#: libraries/CommonFunctions.class.php:3456 libraries/Menu.class.php:261 #: libraries/Menu.class.php:350 libraries/Menu.class.php:455 #: libraries/config/messages.inc.php:218 querywindow.php:61 msgid "SQL" msgstr "SQL" -#: libraries/CommonFunctions.class.php:3446 -#: libraries/CommonFunctions.class.php:3666 -#: libraries/CommonFunctions.class.php:3667 libraries/Menu.class.php:274 +#: libraries/CommonFunctions.class.php:3451 +#: libraries/CommonFunctions.class.php:3671 +#: libraries/CommonFunctions.class.php:3672 libraries/Menu.class.php:274 #: libraries/sql_query_form.lib.php:307 libraries/sql_query_form.lib.php:310 msgid "Insert" msgstr "插入" -#: libraries/CommonFunctions.class.php:3447 -#: libraries/CommonFunctions.class.php:3662 -#: libraries/CommonFunctions.class.php:3663 libraries/DbSearch.class.php:366 +#: libraries/CommonFunctions.class.php:3452 +#: libraries/CommonFunctions.class.php:3667 +#: libraries/CommonFunctions.class.php:3668 libraries/DbSearch.class.php:373 #: libraries/Menu.class.php:251 libraries/structure.lib.php:1384 msgid "Browse" msgstr "瀏覽" -#: libraries/CommonFunctions.class.php:3453 libraries/Menu.class.php:293 +#: libraries/CommonFunctions.class.php:3458 libraries/Menu.class.php:293 #: libraries/Menu.class.php:316 libraries/Menu.class.php:380 #: view_operations.php:84 msgid "Operations" msgstr "操作" -#: libraries/CommonFunctions.class.php:3577 +#: libraries/CommonFunctions.class.php:3582 #: libraries/sql_query_form.lib.php:473 prefs_manage.php:250 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/CommonFunctions.class.php:3605 +#: libraries/CommonFunctions.class.php:3610 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/CommonFunctions.class.php:3634 libraries/insert_edit.lib.php:1206 +#: libraries/CommonFunctions.class.php:3639 libraries/insert_edit.lib.php:1208 #: libraries/sql_query_form.lib.php:482 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/CommonFunctions.class.php:3645 +#: libraries/CommonFunctions.class.php:3650 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/CommonFunctions.class.php:3671 -#: libraries/CommonFunctions.class.php:3672 libraries/structure.lib.php:309 +#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3677 libraries/structure.lib.php:309 msgid "Empty" msgstr "清空" -#: libraries/CommonFunctions.class.php:3675 -#: libraries/CommonFunctions.class.php:3676 +#: libraries/CommonFunctions.class.php:3680 +#: libraries/CommonFunctions.class.php:3681 #: libraries/DisplayResults.class.php:5080 #: libraries/DisplayResults.class.php:5278 libraries/Menu.class.php:280 #: libraries/Menu.class.php:367 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:92 #: libraries/server_privileges.lib.php:1813 #: libraries/server_privileges.lib.php:2443 libraries/structure.lib.php:301 -#: prefs_manage.php:297 server_status.php:1787 setup/frames/menu.inc.php:22 +#: prefs_manage.php:297 server_status.php:1786 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" -#: libraries/CommonFunctions.class.php:3677 -#: libraries/CommonFunctions.class.php:3678 +#: libraries/CommonFunctions.class.php:3682 +#: libraries/CommonFunctions.class.php:3683 msgid "Execute" msgstr "執行" -#: libraries/CommonFunctions.class.php:4221 +#: libraries/CommonFunctions.class.php:4226 msgid "Print" msgstr "列印" @@ -2457,104 +2460,104 @@ msgstr "" msgid "Font size" msgstr "字體大小" -#: libraries/DBQbe.class.php:367 libraries/DisplayResults.class.php:1279 +#: libraries/DBQbe.class.php:366 libraries/DisplayResults.class.php:1279 #: libraries/DisplayResults.class.php:2020 -#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:824 +#: libraries/DisplayResults.class.php:2028 libraries/TableSearch.class.php:827 #: libraries/operations.lib.php:635 libraries/structure.lib.php:872 -#: libraries/structure.lib.php:889 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:889 server_databases.php:201 +#: server_databases.php:218 msgid "Ascending" msgstr "遞增" -#: libraries/DBQbe.class.php:370 libraries/DisplayResults.class.php:1291 +#: libraries/DBQbe.class.php:369 libraries/DisplayResults.class.php:1291 #: libraries/DisplayResults.class.php:2015 -#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:825 +#: libraries/DisplayResults.class.php:2033 libraries/TableSearch.class.php:828 #: libraries/operations.lib.php:636 libraries/structure.lib.php:877 -#: libraries/structure.lib.php:894 server_databases.php:195 -#: server_databases.php:212 +#: libraries/structure.lib.php:894 server_databases.php:201 +#: server_databases.php:218 msgid "Descending" msgstr "遞減" -#: libraries/DBQbe.class.php:425 libraries/DisplayResults.class.php:2088 +#: libraries/DBQbe.class.php:424 libraries/DisplayResults.class.php:2088 #: libraries/structure.lib.php:863 msgid "Sort" msgstr "排序" -#: libraries/DBQbe.class.php:532 +#: libraries/DBQbe.class.php:531 msgid "Criteria" msgstr "條件" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete criteria rows" msgstr "新增/刪除標準行" -#: libraries/DBQbe.class.php:595 +#: libraries/DBQbe.class.php:594 msgid "Add/Delete columns" msgstr "新增/刪除欄位" -#: libraries/DBQbe.class.php:622 libraries/DBQbe.class.php:654 +#: libraries/DBQbe.class.php:621 libraries/DBQbe.class.php:653 msgid "Update Query" msgstr "更新查詢" -#: libraries/DBQbe.class.php:637 +#: libraries/DBQbe.class.php:636 msgid "Use Tables" msgstr "使用表" -#: libraries/DBQbe.class.php:672 libraries/DBQbe.class.php:776 -#: libraries/TableSearch.class.php:792 libraries/insert_edit.lib.php:1209 -#: libraries/server_privileges.lib.php:325 tbl_indexes.php:316 +#: libraries/DBQbe.class.php:671 libraries/DBQbe.class.php:775 +#: libraries/TableSearch.class.php:795 libraries/insert_edit.lib.php:1211 +#: libraries/server_privileges.lib.php:325 tbl_indexes.php:322 msgid "Or" msgstr "或" -#: libraries/DBQbe.class.php:676 libraries/DBQbe.class.php:761 +#: libraries/DBQbe.class.php:675 libraries/DBQbe.class.php:760 msgid "And" msgstr "與" -#: libraries/DBQbe.class.php:680 libraries/DBQbe.class.php:756 +#: libraries/DBQbe.class.php:679 libraries/DBQbe.class.php:755 msgid "Ins" msgstr "插入" -#: libraries/DBQbe.class.php:683 libraries/DBQbe.class.php:771 +#: libraries/DBQbe.class.php:682 libraries/DBQbe.class.php:770 msgid "Del" msgstr "刪除" -#: libraries/DBQbe.class.php:699 +#: libraries/DBQbe.class.php:698 msgid "Modify" msgstr "修改" -#: libraries/DBQbe.class.php:1334 +#: libraries/DBQbe.class.php:1337 #, php-format msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 指令:" -#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:416 +#: libraries/DbSearch.class.php:118 libraries/DbSearch.class.php:425 msgid "at least one of the words" msgstr "至少一個字" -#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:420 +#: libraries/DbSearch.class.php:119 libraries/DbSearch.class.php:429 msgid "all words" msgstr "所有詞" -#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:424 +#: libraries/DbSearch.class.php:120 libraries/DbSearch.class.php:433 msgid "the exact phrase" msgstr "精確短語" -#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:425 +#: libraries/DbSearch.class.php:121 libraries/DbSearch.class.php:434 msgid "as regular expression" msgstr "以正則運算式 (regular expression) 搜索" -#: libraries/DbSearch.class.php:288 +#: libraries/DbSearch.class.php:295 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜尋結果 %s:" -#: libraries/DbSearch.class.php:315 +#: libraries/DbSearch.class.php:322 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "總計: %s 項資料符合" -#: libraries/DbSearch.class.php:351 +#: libraries/DbSearch.class.php:358 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -2562,46 +2565,46 @@ msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" msgstr[0] "%s 筆資料符合 - 於資料表 %s" -#: libraries/DbSearch.class.php:373 +#: libraries/DbSearch.class.php:380 #, php-format msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: libraries/DbSearch.class.php:377 libraries/DisplayResults.class.php:3384 +#: libraries/DbSearch.class.php:384 libraries/DisplayResults.class.php:3384 #: libraries/DisplayResults.class.php:5043 -#: libraries/schema/User_Schema.class.php:216 -#: libraries/schema/User_Schema.class.php:294 -#: libraries/schema/User_Schema.class.php:329 -#: libraries/schema/User_Schema.class.php:359 +#: libraries/schema/User_Schema.class.php:230 +#: libraries/schema/User_Schema.class.php:308 +#: libraries/schema/User_Schema.class.php:343 +#: libraries/schema/User_Schema.class.php:373 #: libraries/sql_query_form.lib.php:431 pmd_general.php:464 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 #: tbl_tracking.php:507 tbl_tracking.php:528 tbl_tracking.php:587 msgid "Delete" msgstr "刪除" -#: libraries/DbSearch.class.php:402 +#: libraries/DbSearch.class.php:409 msgid "Search in database" msgstr "在資料庫中搜尋" -#: libraries/DbSearch.class.php:406 +#: libraries/DbSearch.class.php:413 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要搜尋的文字或數值 (萬用字元:“%”):" -#: libraries/DbSearch.class.php:413 +#: libraries/DbSearch.class.php:422 msgid "Find:" msgstr "搜尋:" -#: libraries/DbSearch.class.php:418 libraries/DbSearch.class.php:422 +#: libraries/DbSearch.class.php:427 libraries/DbSearch.class.php:431 msgid "Words are separated by a space character (\" \")." msgstr "每個單詞用空格 (“ ”) 分隔" -#: libraries/DbSearch.class.php:437 +#: libraries/DbSearch.class.php:446 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "於以下表:" -#: libraries/DbSearch.class.php:469 +#: libraries/DbSearch.class.php:478 msgid "Inside column:" msgstr "於以下欄位:" @@ -2656,8 +2659,8 @@ msgstr "" msgid "Sort by key" msgstr "主鍵排序" -#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:766 -#: libraries/import.lib.php:1197 libraries/import.lib.php:1223 +#: libraries/DisplayResults.class.php:1587 libraries/TableSearch.class.php:769 +#: libraries/import.lib.php:1199 libraries/import.lib.php:1225 #: libraries/plugins/export/ExportCodegen.class.php:89 #: libraries/plugins/export/ExportCsv.class.php:79 #: libraries/plugins/export/ExportExcel.class.php:43 @@ -2736,7 +2739,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/DisplayResults.class.php:3411 -#: libraries/DisplayResults.class.php:5043 server_status.php:1425 +#: libraries/DisplayResults.class.php:5043 server_status.php:1424 msgid "Kill" msgstr "中止" @@ -2754,8 +2757,8 @@ msgstr "查詢中" #: libraries/DisplayResults.class.php:4926 libraries/structure.lib.php:665 #, php-format msgid "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" #: libraries/DisplayResults.class.php:4939 @@ -2766,7 +2769,7 @@ msgstr "顯示行" msgid "total" msgstr "總計" -#: libraries/DisplayResults.class.php:4966 sql.php:841 +#: libraries/DisplayResults.class.php:4966 sql.php:877 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" @@ -2777,7 +2780,7 @@ msgstr "查詢花費 %01.4f 秒" #: libraries/server_privileges.lib.php:2439 libraries/structure.lib.php:282 #: libraries/structure.lib.php:297 libraries/structure.lib.php:299 #: libraries/structure.lib.php:1373 libraries/structure.lib.php:1380 -#: server_databases.php:298 server_databases.php:301 +#: server_databases.php:319 server_databases.php:322 msgid "With selected:" msgstr "選中項:" @@ -2787,8 +2790,8 @@ msgstr "選中項:" #: libraries/server_privileges.lib.php:2437 #: libraries/server_privileges.lib.php:2438 libraries/structure.lib.php:285 #: libraries/structure.lib.php:286 libraries/structure.lib.php:1376 -#: libraries/structure.lib.php:1377 server_databases.php:299 -#: server_databases.php:300 +#: libraries/structure.lib.php:1377 server_databases.php:320 +#: server_databases.php:321 msgid "Check All" msgstr "全選" @@ -2826,41 +2829,41 @@ msgstr "找不到連結" msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:235 +#: libraries/File.class.php:239 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:273 +#: libraries/File.class.php:279 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制" -#: libraries/File.class.php:276 +#: libraries/File.class.php:282 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:279 +#: libraries/File.class.php:285 msgid "The uploaded file was only partially uploaded." msgstr "僅上傳了檔案的一部分內容" -#: libraries/File.class.php:282 +#: libraries/File.class.php:288 msgid "Missing a temporary folder." msgstr "找不到臨時資料夾" -#: libraries/File.class.php:285 +#: libraries/File.class.php:291 msgid "Failed to write file to disk." msgstr "將檔案寫入硬碟失敗" -#: libraries/File.class.php:288 +#: libraries/File.class.php:294 msgid "File upload stopped by extension." msgstr "因外掛而停止檔案上傳" -#: libraries/File.class.php:291 +#: libraries/File.class.php:297 msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤" -#: libraries/File.class.php:467 +#: libraries/File.class.php:475 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2868,11 +2871,11 @@ msgstr "" "移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/File.class.php:485 +#: libraries/File.class.php:493 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:493 +#: libraries/File.class.php:501 msgid "Cannot read (moved) upload file." msgstr "" @@ -2881,68 +2884,68 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/Header.class.php:495 +#: libraries/Header.class.php:494 #: libraries/plugins/auth/AuthenticationCookie.class.php:253 msgid "Cookies must be enabled past this point." msgstr "必須啟用 Cookies 才能登入。" -#: libraries/Header.class.php:500 +#: libraries/Header.class.php:499 #: libraries/plugins/auth/AuthenticationCookie.class.php:157 #, fuzzy #| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" msgstr "必須啟用 Cookies 才能登入。" -#: libraries/Index.class.php:433 tbl_relation.php:551 +#: libraries/Index.class.php:533 tbl_relation.php:551 msgid "No index defined!" msgstr "沒有已定義的索引!" -#: libraries/Index.class.php:438 libraries/Index.class.php:451 +#: libraries/Index.class.php:538 libraries/Index.class.php:551 #: libraries/build_html_for_db.lib.php:41 libraries/structure.lib.php:1617 #: tbl_tracking.php:369 msgid "Indexes" msgstr "索引" -#: libraries/Index.class.php:465 libraries/structure.lib.php:1403 +#: libraries/Index.class.php:565 libraries/structure.lib.php:1403 #: libraries/structure.lib.php:2265 libraries/structure.lib.php:2275 -#: libraries/tbl_properties.inc.php:538 tbl_tracking.php:375 +#: libraries/tbl_properties.inc.php:542 tbl_tracking.php:375 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:466 tbl_tracking.php:376 +#: libraries/Index.class.php:566 tbl_tracking.php:376 msgid "Packed" msgstr "緊湊" -#: libraries/Index.class.php:468 tbl_tracking.php:378 +#: libraries/Index.class.php:568 tbl_tracking.php:378 msgid "Cardinality" msgstr "基數" -#: libraries/Index.class.php:469 libraries/TableSearch.class.php:200 +#: libraries/Index.class.php:569 libraries/TableSearch.class.php:200 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:115 #: libraries/operations.lib.php:245 libraries/operations.lib.php:807 #: libraries/structure.lib.php:791 libraries/structure.lib.php:1196 #: libraries/structure.lib.php:1759 libraries/tbl_properties.inc.php:92 -#: libraries/tbl_properties.inc.php:834 server_collations.php:38 +#: libraries/tbl_properties.inc.php:838 server_collations.php:38 #: server_collations.php:50 tbl_tracking.php:312 tbl_tracking.php:379 msgid "Collation" msgstr "排序規則" -#: libraries/Index.class.php:471 libraries/rte/rte_events.lib.php:488 +#: libraries/Index.class.php:571 libraries/rte/rte_events.lib.php:488 #: libraries/rte/rte_routines.lib.php:1017 tbl_tracking.php:316 #: tbl_tracking.php:381 msgid "Comment" msgstr "註解" -#: libraries/Index.class.php:500 +#: libraries/Index.class.php:600 msgid "The primary key has been dropped" msgstr "已刪除主鍵" -#: libraries/Index.class.php:509 +#: libraries/Index.class.php:609 #, php-format msgid "Index %s has been dropped" msgstr "已刪除索引 %s" -#: libraries/Index.class.php:632 +#: libraries/Index.class.php:732 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " @@ -2951,12 +2954,12 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除 #: libraries/List_Database.class.php:404 libraries/Menu.class.php:451 #: libraries/config/messages.inc.php:181 -#: libraries/server_privileges.lib.php:2891 server_databases.php:133 +#: libraries/server_privileges.lib.php:2891 server_databases.php:139 msgid "Databases" msgstr "資料庫" #: libraries/Menu.class.php:151 libraries/common.inc.php:650 -#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:808 +#: libraries/config/messages.inc.php:512 main.php:196 server_status.php:807 #: server_synchronize.php:1431 msgid "Server" msgstr "伺服器" @@ -3026,18 +3029,18 @@ msgstr "使用者" msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:625 +#: libraries/Menu.class.php:490 server_binlog.php:75 server_status.php:624 msgid "Binary log" msgstr "二進制日誌" #: libraries/Menu.class.php:496 libraries/structure.lib.php:187 #: libraries/structure.lib.php:772 server_replication.php:34 -#: server_replication.php:192 server_status.php:630 +#: server_replication.php:216 server_status.php:629 msgid "Replication" msgstr "複製" #: libraries/Menu.class.php:501 server_engines.php:96 server_engines.php:100 -#: server_status.php:678 +#: server_status.php:677 msgid "Variables" msgstr "變數" @@ -3170,8 +3173,8 @@ msgid "" "changed." msgstr "" -#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:234 -#: libraries/insert_edit.lib.php:240 libraries/rte/rte_routines.lib.php:1488 +#: libraries/TableSearch.class.php:194 libraries/insert_edit.lib.php:236 +#: libraries/insert_edit.lib.php:242 libraries/rte/rte_routines.lib.php:1488 msgid "Function" msgstr "函數" @@ -3181,11 +3184,11 @@ msgstr "函數" msgid "Operator" msgstr "運算符" -#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1204 -#: libraries/insert_edit.lib.php:1599 libraries/replication_gui.lib.php:119 +#: libraries/TableSearch.class.php:202 libraries/TableSearch.class.php:1207 +#: libraries/insert_edit.lib.php:1601 libraries/replication_gui.lib.php:119 #: libraries/rte/rte_routines.lib.php:1490 pmd_general.php:517 #: pmd_general.php:576 pmd_general.php:699 pmd_general.php:816 -#: server_status.php:1648 +#: server_status.php:1647 msgid "Value" msgstr "值" @@ -3195,70 +3198,70 @@ msgstr "值" msgid "Table Search" msgstr "搜尋" -#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1376 +#: libraries/TableSearch.class.php:247 libraries/insert_edit.lib.php:1378 #, fuzzy #| msgid "Insert" msgid "Edit/Insert" msgstr "插入" -#: libraries/TableSearch.class.php:773 +#: libraries/TableSearch.class.php:776 msgid "Select columns (at least one):" msgstr "選擇欄位 (至少一個):" -#: libraries/TableSearch.class.php:793 +#: libraries/TableSearch.class.php:796 msgid "Add search conditions (body of the \"where\" clause):" msgstr "新增搜尋條件 (“where”指令的主體):" -#: libraries/TableSearch.class.php:805 +#: libraries/TableSearch.class.php:808 msgid "Number of rows per page" msgstr "每頁行數" -#: libraries/TableSearch.class.php:815 +#: libraries/TableSearch.class.php:818 msgid "Display order:" msgstr "顯示順序:" -#: libraries/TableSearch.class.php:851 +#: libraries/TableSearch.class.php:854 msgid "Use this column to label each point" msgstr "" -#: libraries/TableSearch.class.php:872 +#: libraries/TableSearch.class.php:875 #, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "顯示的最多行數" -#: libraries/TableSearch.class.php:900 libraries/TableSearch.class.php:1172 -#: sql.php:150 tbl_change.php:213 +#: libraries/TableSearch.class.php:903 libraries/TableSearch.class.php:1175 +#: sql.php:158 tbl_change.php:217 msgid "Browse foreign values" msgstr "瀏覽不相關的值" -#: libraries/TableSearch.class.php:989 +#: libraries/TableSearch.class.php:992 #, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "隱藏搜尋條件" -#: libraries/TableSearch.class.php:1127 +#: libraries/TableSearch.class.php:1130 #, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "執行“依例查詢”(萬用字元:“%”)" -#: libraries/TableSearch.class.php:1137 +#: libraries/TableSearch.class.php:1140 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "執行“依例查詢”(萬用字元:“%”)" -#: libraries/TableSearch.class.php:1181 +#: libraries/TableSearch.class.php:1184 msgid "Browse/Edit the points" msgstr "" -#: libraries/TableSearch.class.php:1188 +#: libraries/TableSearch.class.php:1191 #, fuzzy #| msgid "Control user" msgid "How to use" msgstr "控制使用者" -#: libraries/TableSearch.class.php:1193 +#: libraries/TableSearch.class.php:1196 #, fuzzy #| msgid "Reset" msgid "Reset zoom" @@ -3333,14 +3336,14 @@ msgstr "" #: libraries/Types.class.php:307 msgid "" -"A small floating-point number, allowable values are -3.402823466E+38 to " -"-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" +"A small floating-point number, allowable values are -3.402823466E+38 to -" +"1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" #: libraries/Types.class.php:309 msgid "" -"A double-precision floating-point number, allowable values are " -"-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " +"A double-precision floating-point number, allowable values are -" +"1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" @@ -3593,7 +3596,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 -#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:632 +#: libraries/plugins/export/ExportXml.class.php:114 server_status.php:631 msgid "Tables" msgstr "資料表" @@ -3607,12 +3610,12 @@ msgstr "資料表" #: libraries/plugins/export/ExportLatex.class.php:301 #: libraries/plugins/export/ExportSql.class.php:1555 #: libraries/server_privileges.lib.php:760 libraries/structure.lib.php:2377 -#: server_replication.php:346 tbl_printview.php:297 +#: server_replication.php:373 tbl_printview.php:303 msgid "Data" msgstr "資料" #: libraries/build_html_for_db.lib.php:51 libraries/structure.lib.php:802 -#: libraries/structure.lib.php:2390 tbl_printview.php:316 +#: libraries/structure.lib.php:2390 tbl_printview.php:322 msgid "Overhead" msgstr "多餘" @@ -3720,7 +3723,7 @@ msgstr "開啓" msgid "Closed" msgstr "關閉" -#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:222 +#: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:223 #: libraries/relation.lib.php:98 libraries/relation.lib.php:105 #: pmd_relation_new.php:83 msgid "Disabled" @@ -3858,22 +3861,22 @@ msgstr "維基 (Wiki)" msgid "This setting is disabled, it will not be applied to your configuration" msgstr "此設定已停用,不會套用到您的設定中" -#: libraries/config/FormDisplay.tpl.php:303 +#: libraries/config/FormDisplay.tpl.php:305 #, php-format msgid "Set value: %s" msgstr "設定值: %s" -#: libraries/config/FormDisplay.tpl.php:308 +#: libraries/config/FormDisplay.tpl.php:310 #: libraries/config/messages.inc.php:360 msgid "Restore default value" msgstr "還原預設值" -#: libraries/config/FormDisplay.tpl.php:324 +#: libraries/config/FormDisplay.tpl.php:326 msgid "Allow users to customize this value" msgstr "允許使用者自訂該值" -#: libraries/config/FormDisplay.tpl.php:388 libraries/insert_edit.lib.php:1572 -#: libraries/schema/User_Schema.class.php:528 prefs_manage.php:328 +#: libraries/config/FormDisplay.tpl.php:390 libraries/insert_edit.lib.php:1574 +#: libraries/schema/User_Schema.class.php:551 prefs_manage.php:328 #: prefs_manage.php:333 msgid "Reset" msgstr "重置" @@ -4154,7 +4157,7 @@ msgstr "檔案字集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 #: libraries/structure.lib.php:1740 tbl_gis_visualization.php:180 -#: tbl_printview.php:352 +#: tbl_printview.php:358 msgid "Format" msgstr "格式" @@ -4263,7 +4266,7 @@ msgstr "關鍵標籤" #: libraries/config/messages.inc.php:102 libraries/config/messages.inc.php:114 #: libraries/config/messages.inc.php:138 #: libraries/plugins/export/ExportOdt.class.php:479 -#: libraries/tbl_properties.inc.php:142 +#: libraries/tbl_properties.inc.php:143 msgid "MIME type" msgstr "MIME 類型" @@ -4299,7 +4302,7 @@ msgid "Enclose table and column names with backquotes" msgstr "在資料表名稱及欄位名稱使用反引號(`)" #: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:268 -#: libraries/display_export.lib.php:374 +#: libraries/display_export.lib.php:375 msgid "SQL compatibility mode" msgstr "SQL 相容模式" @@ -5814,10 +5817,10 @@ msgid "Requires SQL Validator to be enabled" msgstr "需要啓用 SQL 檢驗器" #: libraries/config/messages.inc.php:496 -#: libraries/display_change_password.lib.php:40 +#: libraries/display_change_password.lib.php:43 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 -#: libraries/replication_gui.lib.php:353 libraries/replication_gui.lib.php:357 -#: libraries/replication_gui.lib.php:367 +#: libraries/replication_gui.lib.php:352 libraries/replication_gui.lib.php:356 +#: libraries/replication_gui.lib.php:366 #: libraries/server_privileges.lib.php:1203 #: libraries/server_privileges.lib.php:1207 #: libraries/server_privileges.lib.php:1231 @@ -6078,7 +6081,7 @@ msgstr "缺少 %s 外掛。請檢查 PHP 設定" msgid "possible deep recursion attack" msgstr "" -#: libraries/database_interface.lib.php:2016 +#: libraries/database_interface.lib.php:2017 #, fuzzy #| msgid "(or the local MySQL server's socket is not correctly configured)" msgid "" @@ -6086,48 +6089,56 @@ msgid "" "configured)." msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)" -#: libraries/database_interface.lib.php:2019 +#: libraries/database_interface.lib.php:2020 #, fuzzy #| msgid "The server is not responding" msgid "The server is not responding." msgstr "伺服器沒有響應" -#: libraries/database_interface.lib.php:2024 +#: libraries/database_interface.lib.php:2025 msgid "Please check privileges of directory containing database." msgstr "" -#: libraries/database_interface.lib.php:2033 +#: libraries/database_interface.lib.php:2034 msgid "Details..." msgstr "詳細..." -#: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:138 +#: libraries/dbi/drizzle-wrappers.lib.php:440 +msgid "Can't seek in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle-wrappers.lib.php:462 +msgid "Can't count rows in an unbuffered result set" +msgstr "" + +#: libraries/dbi/drizzle.dbi.lib.php:136 libraries/dbi/mysql.dbi.lib.php:150 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗" -#: libraries/display_change_password.lib.php:29 main.php:106 +#: libraries/display_change_password.lib.php:32 main.php:106 #: user_password.php:228 msgid "Change password" msgstr "修改密碼" -#: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:363 +#: libraries/display_change_password.lib.php:37 +#: libraries/replication_gui.lib.php:362 #: libraries/server_privileges.lib.php:1223 msgid "No Password" msgstr "無密碼" -#: libraries/display_change_password.lib.php:45 -#: libraries/replication_gui.lib.php:371 libraries/replication_gui.lib.php:374 +#: libraries/display_change_password.lib.php:48 +#: libraries/replication_gui.lib.php:370 libraries/replication_gui.lib.php:373 #: libraries/server_privileges.lib.php:1238 #: libraries/server_privileges.lib.php:1242 msgid "Re-type" msgstr "重新輸入" -#: libraries/display_change_password.lib.php:51 +#: libraries/display_change_password.lib.php:54 msgid "Password Hashing" msgstr "密碼加密方式" -#: libraries/display_change_password.lib.php:65 +#: libraries/display_change_password.lib.php:68 msgid "MySQL 4.0 compatible" msgstr "MySQL 4.0 相容" @@ -6259,8 +6270,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -6338,7 +6349,7 @@ msgstr "爲 %2$s.%3$s 建立版本 %1$s" msgid "authored on %1$s by %2$s" msgstr "爲 %2$s.%3$s 建立版本 %1$s" -#: libraries/display_import.lib.php:68 +#: libraries/display_import.lib.php:70 msgid "" "The file being uploaded is probably larger than the maximum allowed size or " "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " @@ -6347,64 +6358,64 @@ msgstr "" "上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google " "Chrome, Arora 等) 的已知缺陷 (bug)." -#: libraries/display_import.lib.php:76 +#: libraries/display_import.lib.php:78 #, php-format msgid "%s of %s" msgstr "" -#: libraries/display_import.lib.php:85 +#: libraries/display_import.lib.php:87 #, fuzzy #| msgid "Format of imported file" msgid "Uploading your import file..." msgstr "匯入檔案的格式" -#: libraries/display_import.lib.php:93 +#: libraries/display_import.lib.php:95 #, php-format msgid "%s/sec." msgstr "" -#: libraries/display_import.lib.php:100 +#: libraries/display_import.lib.php:102 msgid "About %MIN min. %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:104 +#: libraries/display_import.lib.php:106 msgid "About %SEC sec. remaining." msgstr "" -#: libraries/display_import.lib.php:134 +#: libraries/display_import.lib.php:136 msgid "The file is being processed, please be patient." msgstr "正在處理,請稍候" -#: libraries/display_import.lib.php:154 +#: libraries/display_import.lib.php:156 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." msgstr "正在上傳,沒有詳細資訊,請稍候" -#: libraries/display_import.lib.php:187 +#: libraries/display_import.lib.php:189 msgid "Importing into the current server" msgstr "匯入到目前伺服器" -#: libraries/display_import.lib.php:189 +#: libraries/display_import.lib.php:191 #, php-format msgid "Importing into the database \"%s\"" msgstr "匯入到資料庫“%s”" -#: libraries/display_import.lib.php:191 +#: libraries/display_import.lib.php:193 #, php-format msgid "Importing into the table \"%s\"" msgstr "匯入到資料表“%s”" -#: libraries/display_import.lib.php:197 +#: libraries/display_import.lib.php:199 msgid "File to Import:" msgstr "要匯入的檔案:" -#: libraries/display_import.lib.php:214 +#: libraries/display_import.lib.php:216 #, php-format msgid "File may be compressed (%s) or uncompressed." msgstr "檔案可能已壓縮 (%s) 或未壓縮" -#: libraries/display_import.lib.php:216 +#: libraries/display_import.lib.php:218 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" @@ -6483,71 +6494,71 @@ msgid "" "tables." msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" -#: libraries/engines/innodb.lib.php:141 +#: libraries/engines/innodb.lib.php:143 msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:142 server_status.php:680 +#: libraries/engines/innodb.lib.php:144 server_status.php:679 msgid "InnoDB Status" msgstr "InnoDB 狀態" -#: libraries/engines/innodb.lib.php:167 +#: libraries/engines/innodb.lib.php:169 msgid "Buffer Pool Usage" msgstr "快取池使用情況" -#: libraries/engines/innodb.lib.php:177 +#: libraries/engines/innodb.lib.php:179 msgid "pages" msgstr "頁數" -#: libraries/engines/innodb.lib.php:188 +#: libraries/engines/innodb.lib.php:193 msgid "Free pages" msgstr "空閒頁" -#: libraries/engines/innodb.lib.php:196 +#: libraries/engines/innodb.lib.php:201 msgid "Dirty pages" msgstr "髒頁" -#: libraries/engines/innodb.lib.php:204 +#: libraries/engines/innodb.lib.php:209 msgid "Pages containing data" msgstr "非空頁" -#: libraries/engines/innodb.lib.php:212 +#: libraries/engines/innodb.lib.php:217 msgid "Pages to be flushed" msgstr "要重新整理的頁" -#: libraries/engines/innodb.lib.php:220 +#: libraries/engines/innodb.lib.php:225 msgid "Busy pages" msgstr "負載頁" -#: libraries/engines/innodb.lib.php:231 +#: libraries/engines/innodb.lib.php:236 msgid "Latched pages" msgstr "鎖定頁" -#: libraries/engines/innodb.lib.php:244 +#: libraries/engines/innodb.lib.php:249 msgid "Buffer Pool Activity" msgstr "快取池操作" -#: libraries/engines/innodb.lib.php:248 +#: libraries/engines/innodb.lib.php:253 msgid "Read requests" msgstr "讀請求" -#: libraries/engines/innodb.lib.php:256 +#: libraries/engines/innodb.lib.php:261 msgid "Write requests" msgstr "寫請求" -#: libraries/engines/innodb.lib.php:264 +#: libraries/engines/innodb.lib.php:269 msgid "Read misses" msgstr "讀缺失數" -#: libraries/engines/innodb.lib.php:272 +#: libraries/engines/innodb.lib.php:277 msgid "Write waits" msgstr "寫等待數" -#: libraries/engines/innodb.lib.php:280 +#: libraries/engines/innodb.lib.php:285 msgid "Read misses in %" msgstr "讀缺失率" -#: libraries/engines/innodb.lib.php:288 +#: libraries/engines/innodb.lib.php:300 msgid "Write waits in %" msgstr "寫等待率" @@ -6756,8 +6767,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:133 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:135 @@ -6774,132 +6785,132 @@ msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" msgid "No data found for GIS visualization." msgstr "未找到圖表所需資料" -#: libraries/import.lib.php:185 libraries/insert_edit.lib.php:148 -#: libraries/rte/rte_routines.lib.php:1353 sql.php:837 tbl_get_field.php:42 +#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:149 +#: libraries/rte/rte_routines.lib.php:1353 sql.php:873 tbl_get_field.php:42 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" -#: libraries/import.lib.php:1192 +#: libraries/import.lib.php:1194 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1193 +#: libraries/import.lib.php:1195 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "點選它的名字查看內容" -#: libraries/import.lib.php:1194 +#: libraries/import.lib.php:1196 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "點選相應的“選項”連結修改它的設定" -#: libraries/import.lib.php:1195 +#: libraries/import.lib.php:1197 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選“結構”連結編輯它的結構" -#: libraries/import.lib.php:1199 +#: libraries/import.lib.php:1201 #, fuzzy, php-format #| msgid "Go to database" msgid "Go to database: %s" msgstr "轉到資料庫" -#: libraries/import.lib.php:1202 libraries/import.lib.php:1230 +#: libraries/import.lib.php:1204 libraries/import.lib.php:1232 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "在 %s 中丟失資料" -#: libraries/import.lib.php:1225 +#: libraries/import.lib.php:1227 #, fuzzy, php-format #| msgid "Go to table" msgid "Go to table: %s" msgstr "轉到資料表" -#: libraries/import.lib.php:1228 +#: libraries/import.lib.php:1230 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "僅結構" -#: libraries/import.lib.php:1236 +#: libraries/import.lib.php:1238 #, fuzzy, php-format #| msgid "Go to view" msgid "Go to view: %s" msgstr "轉到 view" -#: libraries/insert_edit.lib.php:239 libraries/insert_edit.lib.php:270 +#: libraries/insert_edit.lib.php:241 libraries/insert_edit.lib.php:272 #: pmd_general.php:186 msgid "Hide" msgstr "隱藏" -#: libraries/insert_edit.lib.php:483 libraries/mysql_charsets.lib.php:219 +#: libraries/insert_edit.lib.php:485 libraries/mysql_charsets.lib.php:219 #: libraries/mysql_charsets.lib.php:420 msgid "Binary" msgstr "二進制" -#: libraries/insert_edit.lib.php:678 +#: libraries/insert_edit.lib.php:680 msgid "Because of its length,
this column might not be editable" msgstr "因長度問題,
該欄位可能無法編輯" -#: libraries/insert_edit.lib.php:1112 +#: libraries/insert_edit.lib.php:1114 msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" -#: libraries/insert_edit.lib.php:1210 libraries/sql_query_form.lib.php:485 +#: libraries/insert_edit.lib.php:1212 libraries/sql_query_form.lib.php:485 msgid "web server upload directory" msgstr "網站伺服器上傳資料夾" -#: libraries/insert_edit.lib.php:1426 +#: libraries/insert_edit.lib.php:1428 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續插入 %s 行" -#: libraries/insert_edit.lib.php:1456 +#: libraries/insert_edit.lib.php:1458 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1489 +#: libraries/insert_edit.lib.php:1491 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1492 +#: libraries/insert_edit.lib.php:1494 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1495 +#: libraries/insert_edit.lib.php:1497 msgid "Show insert query" msgstr "顯示插入指令" -#: libraries/insert_edit.lib.php:1515 +#: libraries/insert_edit.lib.php:1517 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1518 +#: libraries/insert_edit.lib.php:1520 msgid "Insert another new row" msgstr "插入新資料" -#: libraries/insert_edit.lib.php:1523 +#: libraries/insert_edit.lib.php:1525 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1545 +#: libraries/insert_edit.lib.php:1547 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1566 +#: libraries/insert_edit.lib.php:1568 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1938 sql.php:833 +#: libraries/insert_edit.lib.php:1940 sql.php:869 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1963 sql.php:813 +#: libraries/insert_edit.lib.php:1965 sql.php:849 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -6945,7 +6956,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:312 sql.php:434 +#: libraries/mult_submits.inc.php:312 sql.php:451 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7234,7 +7245,7 @@ msgstr "表選項" msgid "Rename table to" msgstr "將表改名爲" -#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:830 +#: libraries/operations.lib.php:794 libraries/tbl_properties.inc.php:834 #: server_engines.php:43 msgid "Storage Engine" msgstr "儲存引擎" @@ -7348,8 +7359,8 @@ msgstr "歡迎使用 %s" #: libraries/plugins/auth/AuthenticationConfig.class.php:101 #, 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 來建立一個設定檔案" @@ -7422,21 +7433,21 @@ msgstr "帳號/密碼錯誤。拒絕訪問" msgid "Can not find signon authentication script:" msgstr "無法找到對應的認證指令" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:132 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:134 #, php-format msgid "File %s does not contain any key id" msgstr "檔案 %s 未包含任何密鑰" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:174 -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:194 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:176 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:196 msgid "Hardware authentication failed" msgstr "硬件認證失敗" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:181 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:183 msgid "No valid authentication key plugged" msgstr "沒有可用的密鑰插入" -#: libraries/plugins/auth/swekey/swekey.auth.lib.php:214 +#: libraries/plugins/auth/swekey/swekey.auth.lib.php:216 msgid "Authenticating..." msgstr "正在認證..." @@ -7575,20 +7586,21 @@ msgstr "顯示 MIME 類型" #: libraries/plugins/export/ExportLatex.class.php:217 #: libraries/plugins/export/ExportSql.class.php:602 #: libraries/plugins/export/ExportXml.class.php:190 -#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:189 -#: libraries/replication_gui.lib.php:285 libraries/replication_gui.lib.php:288 -#: libraries/replication_gui.lib.php:345 +#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:188 +#: libraries/replication_gui.lib.php:284 libraries/replication_gui.lib.php:287 +#: libraries/replication_gui.lib.php:344 #: libraries/server_privileges.lib.php:1093 #: libraries/server_privileges.lib.php:1098 #: libraries/server_privileges.lib.php:1194 #: libraries/server_privileges.lib.php:1592 -#: libraries/server_privileges.lib.php:2413 server_status.php:1287 sql.php:996 +#: libraries/server_privileges.lib.php:2413 server_status.php:1286 +#: sql.php:1036 msgid "Host" msgstr "主機" #: libraries/plugins/export/ExportLatex.class.php:222 #: libraries/plugins/export/ExportSql.class.php:609 -#: libraries/plugins/export/ExportXml.class.php:195 sql.php:998 +#: libraries/plugins/export/ExportXml.class.php:195 sql.php:1038 msgid "Generation Time" msgstr "產生日期" @@ -7842,7 +7854,7 @@ msgid "Invalid column count in CSV input on line %d." msgstr "CSV 輸入的第 %d 行欄位數有錯" #: libraries/plugins/import/ImportDocsql.class.php:84 -#: libraries/tbl_properties.inc.php:715 server_synchronize.php:527 +#: libraries/tbl_properties.inc.php:719 server_synchronize.php:527 #: server_synchronize.php:1047 msgid "Table name" msgstr "資料資料表名稱" @@ -8083,7 +8095,7 @@ msgstr "建立 PDF" msgid "Displaying Column Comments" msgstr "顯示欄位註釋" -#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:143 +#: libraries/relation.lib.php:167 libraries/tbl_properties.inc.php:144 #: transformation_overview.php:38 msgid "Browser transformation" msgstr "瀏覽器轉換" @@ -8151,7 +8163,7 @@ msgstr "全不選" msgid "Slave configuration" msgstr "從伺服器設定" -#: libraries/replication_gui.lib.php:54 server_replication.php:385 +#: libraries/replication_gui.lib.php:54 server_replication.php:412 msgid "Change or reconfigure master server" msgstr "修改或重新設定主伺服器" @@ -8164,8 +8176,8 @@ msgstr "" "新增此行到 [mysqld] 一節中:" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 -#: libraries/replication_gui.lib.php:265 libraries/replication_gui.lib.php:268 -#: libraries/replication_gui.lib.php:275 +#: libraries/replication_gui.lib.php:264 libraries/replication_gui.lib.php:267 +#: libraries/replication_gui.lib.php:274 #: libraries/server_privileges.lib.php:1043 #: libraries/server_privileges.lib.php:1048 #: libraries/server_privileges.lib.php:1078 server_synchronize.php:1443 @@ -8185,31 +8197,31 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:415 -#: server_status.php:1647 server_variables.php:124 +#: server_status.php:1646 server_variables.php:125 msgid "Variable" msgstr "變數" -#: libraries/replication_gui.lib.php:188 server_binlog.php:190 +#: libraries/replication_gui.lib.php:187 server_binlog.php:191 msgid "Server ID" msgstr "伺服器ID" -#: libraries/replication_gui.lib.php:207 +#: libraries/replication_gui.lib.php:206 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." msgstr "僅透過 --report-host=主機名 參數啓動的從伺服器可見" -#: libraries/replication_gui.lib.php:256 server_replication.php:224 +#: libraries/replication_gui.lib.php:255 server_replication.php:251 msgid "Add slave replication user" msgstr "新增 slave replication 使用者" -#: libraries/replication_gui.lib.php:270 +#: libraries/replication_gui.lib.php:269 #: libraries/server_privileges.lib.php:1062 msgid "Any user" msgstr "任意使用者" -#: libraries/replication_gui.lib.php:271 libraries/replication_gui.lib.php:339 -#: libraries/replication_gui.lib.php:364 +#: libraries/replication_gui.lib.php:270 libraries/replication_gui.lib.php:338 +#: libraries/replication_gui.lib.php:363 #: libraries/server_privileges.lib.php:1071 #: libraries/server_privileges.lib.php:1187 #: libraries/server_privileges.lib.php:1226 @@ -8218,34 +8230,34 @@ msgstr "任意使用者" msgid "Use text field" msgstr "使用文字域" -#: libraries/replication_gui.lib.php:318 +#: libraries/replication_gui.lib.php:317 #: libraries/server_privileges.lib.php:1151 msgid "Any host" msgstr "任意主機" -#: libraries/replication_gui.lib.php:322 +#: libraries/replication_gui.lib.php:321 #: libraries/server_privileges.lib.php:1159 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:328 +#: libraries/replication_gui.lib.php:327 #: libraries/server_privileges.lib.php:1168 msgid "This Host" msgstr "此主機" -#: libraries/replication_gui.lib.php:334 +#: libraries/replication_gui.lib.php:333 #: libraries/server_privileges.lib.php:1178 msgid "Use Host Table" msgstr "使用主機表" -#: libraries/replication_gui.lib.php:348 +#: libraries/replication_gui.lib.php:347 #: libraries/server_privileges.lib.php:1197 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." msgstr "使用主機表時,此處的資料會被主機資料表中的資料所替換" -#: libraries/replication_gui.lib.php:378 +#: libraries/replication_gui.lib.php:377 msgid "Generate Password" msgstr "產生密碼" @@ -8315,7 +8327,7 @@ msgstr "詳細..." msgid "Event name" msgstr "事件類型" -#: libraries/rte/rte_events.lib.php:403 server_binlog.php:189 +#: libraries/rte/rte_events.lib.php:403 server_binlog.php:190 msgid "Event type" msgstr "事件類型" @@ -8721,7 +8733,7 @@ msgstr "沒有在資料庫中找到表" msgid "There are no events to display." msgstr "沒有可上傳的檔案" -#: libraries/schema/Dia_Relation_Schema.class.php:235 +#: libraries/schema/Dia_Relation_Schema.class.php:237 #: libraries/schema/Eps_Relation_Schema.class.php:426 #: libraries/schema/Pdf_Relation_Schema.class.php:438 #: libraries/schema/Svg_Relation_Schema.class.php:393 @@ -8730,7 +8742,7 @@ msgstr "沒有可上傳的檔案" msgid "The %s table doesn't exist!" msgstr "資料表 %s 不存在!" -#: libraries/schema/Dia_Relation_Schema.class.php:270 +#: libraries/schema/Dia_Relation_Schema.class.php:273 #: libraries/schema/Eps_Relation_Schema.class.php:475 #: libraries/schema/Pdf_Relation_Schema.class.php:478 #: libraries/schema/Svg_Relation_Schema.class.php:444 @@ -8776,97 +8788,97 @@ msgstr "屬性" msgid "Extra" msgstr "額外" -#: libraries/schema/User_Schema.class.php:134 +#: libraries/schema/User_Schema.class.php:144 msgid "Create a page" msgstr "建立新頁" -#: libraries/schema/User_Schema.class.php:140 +#: libraries/schema/User_Schema.class.php:150 msgid "Page name" msgstr "頁面名稱" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:156 msgid "Automatic layout based on" msgstr "自動排版,基於" -#: libraries/schema/User_Schema.class.php:147 +#: libraries/schema/User_Schema.class.php:159 msgid "Internal relations" msgstr "行內" -#: libraries/schema/User_Schema.class.php:157 +#: libraries/schema/User_Schema.class.php:169 msgid "FOREIGN KEY" msgstr "外部鍵" -#: libraries/schema/User_Schema.class.php:192 +#: libraries/schema/User_Schema.class.php:206 msgid "Please choose a page to edit" msgstr "請選擇需要編輯的頁" -#: libraries/schema/User_Schema.class.php:197 +#: libraries/schema/User_Schema.class.php:211 msgid "Select page" msgstr "選擇頁" -#: libraries/schema/User_Schema.class.php:265 +#: libraries/schema/User_Schema.class.php:279 msgid "Select Tables" msgstr "選擇表" -#: libraries/schema/User_Schema.class.php:372 view_create.php:182 +#: libraries/schema/User_Schema.class.php:386 view_create.php:182 msgid "Column names" msgstr "欄位名稱" -#: libraries/schema/User_Schema.class.php:403 +#: libraries/schema/User_Schema.class.php:417 msgid "Display relational schema" msgstr "顯示關聯大綱" -#: libraries/schema/User_Schema.class.php:413 +#: libraries/schema/User_Schema.class.php:427 msgid "Select Export Relational Type" msgstr "選擇匯出關聯類型" -#: libraries/schema/User_Schema.class.php:434 +#: libraries/schema/User_Schema.class.php:452 msgid "Show grid" msgstr "顯示網格" -#: libraries/schema/User_Schema.class.php:436 +#: libraries/schema/User_Schema.class.php:454 msgid "Show color" msgstr "顯示顏色" -#: libraries/schema/User_Schema.class.php:438 +#: libraries/schema/User_Schema.class.php:458 msgid "Show dimension of tables" msgstr "顯示資料表格大小" -#: libraries/schema/User_Schema.class.php:441 +#: libraries/schema/User_Schema.class.php:462 msgid "Display all tables with the same width" msgstr "以相同寬度顯示所有的表" -#: libraries/schema/User_Schema.class.php:444 libraries/structure.lib.php:383 +#: libraries/schema/User_Schema.class.php:465 libraries/structure.lib.php:383 msgid "Data Dictionary" msgstr "資料字典" -#: libraries/schema/User_Schema.class.php:446 +#: libraries/schema/User_Schema.class.php:467 msgid "Only show keys" msgstr "僅顯示鍵" -#: libraries/schema/User_Schema.class.php:448 +#: libraries/schema/User_Schema.class.php:469 msgid "Landscape" msgstr "橫向" -#: libraries/schema/User_Schema.class.php:449 +#: libraries/schema/User_Schema.class.php:470 msgid "Portrait" msgstr "縱向" -#: libraries/schema/User_Schema.class.php:451 +#: libraries/schema/User_Schema.class.php:472 msgid "Orientation" msgstr "方向" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:485 msgid "Paper size" msgstr "紙張大小" -#: libraries/schema/User_Schema.class.php:502 +#: libraries/schema/User_Schema.class.php:523 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" msgstr "目前頁所引用的表不存在了。您是否想要刪除這些引用?" -#: libraries/schema/User_Schema.class.php:527 +#: libraries/schema/User_Schema.class.php:550 msgid "Toggle scratchboard" msgstr "切換草稿板" @@ -9160,7 +9172,7 @@ msgstr "使用者可以訪問“%s”" #: libraries/server_privileges.lib.php:2412 #: libraries/server_privileges.lib.php:2832 #: libraries/server_privileges.lib.php:2880 main.php:212 -#: server_status.php:1283 +#: server_status.php:1282 msgid "User" msgstr "使用者" @@ -9298,8 +9310,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重新載入" @@ -9359,11 +9371,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:325 sql.php:1174 sql.php:1191 +#: libraries/sql_query_form.lib.php:325 sql.php:1220 sql.php:1237 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:331 sql.php:1185 +#: libraries/sql_query_form.lib.php:331 sql.php:1231 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -9454,7 +9466,7 @@ msgid "" msgstr "" "SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛" -#: libraries/structure.lib.php:72 tbl_operations.php:308 +#: libraries/structure.lib.php:72 tbl_operations.php:310 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s" @@ -9467,12 +9479,12 @@ msgstr "追蹤已啓用" msgid "Tracking is not active." msgstr "追蹤已停用" -#: libraries/structure.lib.php:133 tbl_operations.php:326 +#: libraries/structure.lib.php:133 tbl_operations.php:328 #, php-format msgid "View %s has been dropped" msgstr "已刪除 view %s" -#: libraries/structure.lib.php:134 tbl_operations.php:327 +#: libraries/structure.lib.php:134 tbl_operations.php:329 #, php-format msgid "Table %s has been dropped" msgstr "已刪除表 %s" @@ -9500,14 +9512,14 @@ msgid "Column %s has been dropped" msgstr "已刪除欄位 %s" #: libraries/structure.lib.php:1399 libraries/structure.lib.php:2261 -#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:531 +#: libraries/structure.lib.php:2271 libraries/tbl_properties.inc.php:535 msgid "Primary" msgstr "主鍵" #: libraries/structure.lib.php:1407 libraries/structure.lib.php:2263 #: libraries/structure.lib.php:2273 libraries/structure.lib.php:2383 -#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:545 -#: tbl_printview.php:306 +#: libraries/tbl_properties.inc.php:101 libraries/tbl_properties.inc.php:549 +#: tbl_printview.php:312 msgid "Index" msgstr "索引" @@ -9517,7 +9529,7 @@ msgid "Spatial" msgstr "" #: libraries/structure.lib.php:1424 libraries/structure.lib.php:2269 -#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:553 +#: libraries/structure.lib.php:2279 libraries/tbl_properties.inc.php:557 msgid "Fulltext" msgstr "全文搜尋" @@ -9545,7 +9557,7 @@ msgstr "關聯查看" msgid "Propose table structure" msgstr "規劃表結構" -#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:737 +#: libraries/structure.lib.php:1562 libraries/tbl_properties.inc.php:741 msgid "You have to add at least one column." msgstr "至少要增加一個字段。" @@ -9553,7 +9565,7 @@ msgstr "至少要增加一個字段。" msgid "Add column" msgstr "新增欄位" -#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:729 +#: libraries/structure.lib.php:1578 libraries/tbl_properties.inc.php:733 #, php-format msgid "Add %s column(s)" msgstr "增加 %s 個字段" @@ -9576,15 +9588,15 @@ msgstr "於 %s 之後" msgid "Create an index on  %s columns" msgstr "在第 %s 個欄位建立索引" -#: libraries/structure.lib.php:1728 tbl_printview.php:346 +#: libraries/structure.lib.php:1728 tbl_printview.php:352 msgid "Row Statistics" msgstr "行統計" -#: libraries/structure.lib.php:1733 tbl_printview.php:356 +#: libraries/structure.lib.php:1733 tbl_printview.php:362 msgid "static" msgstr "靜態" -#: libraries/structure.lib.php:1735 tbl_printview.php:358 +#: libraries/structure.lib.php:1735 tbl_printview.php:364 msgid "dynamic" msgstr "動態" @@ -9592,15 +9604,15 @@ msgstr "動態" msgid "partitioned" msgstr "已分區" -#: libraries/structure.lib.php:1777 tbl_printview.php:382 +#: libraries/structure.lib.php:1777 tbl_printview.php:388 msgid "Row length" msgstr "行長度" -#: libraries/structure.lib.php:1789 tbl_printview.php:396 +#: libraries/structure.lib.php:1789 tbl_printview.php:402 msgid "Row size" msgstr "行大小" -#: libraries/structure.lib.php:1797 tbl_printview.php:406 +#: libraries/structure.lib.php:1797 tbl_printview.php:412 msgid "Next autoindex" msgstr "" @@ -9650,15 +9662,15 @@ msgstr "新增索引" msgid "Add FULLTEXT index" msgstr "新增全文索引" -#: libraries/structure.lib.php:2368 server_binlog.php:192 +#: libraries/structure.lib.php:2368 server_binlog.php:193 msgid "Information" msgstr "資訊" -#: libraries/structure.lib.php:2373 tbl_printview.php:294 +#: libraries/structure.lib.php:2373 tbl_printview.php:300 msgid "Space usage" msgstr "已用空間" -#: libraries/structure.lib.php:2393 tbl_printview.php:321 +#: libraries/structure.lib.php:2393 tbl_printview.php:327 msgid "Effective" msgstr "有效" @@ -9690,18 +9702,18 @@ msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號, msgid "Move column" msgstr "刪除欄位" -#: libraries/tbl_properties.inc.php:132 +#: libraries/tbl_properties.inc.php:133 #, 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:145 msgid "Transformation options" msgstr "轉換選項" -#: libraries/tbl_properties.inc.php:146 +#: libraries/tbl_properties.inc.php:148 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 " @@ -9711,34 +9723,34 @@ msgstr "" "請使用此格式輸入轉換選項的值:'a',100,b,'c'...
如果您需要在值中輸入反斜" "槓 (“\\”)或單引號(“'”),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')" -#: libraries/tbl_properties.inc.php:382 +#: libraries/tbl_properties.inc.php:386 msgid "ENUM or SET data too long?" msgstr "ENUM 或 SET 資料過長?" -#: libraries/tbl_properties.inc.php:384 +#: libraries/tbl_properties.inc.php:388 msgid "Get more editing space" msgstr "取得更多編輯空間" -#: libraries/tbl_properties.inc.php:400 +#: libraries/tbl_properties.inc.php:404 msgctxt "for default" msgid "None" msgstr "無" -#: libraries/tbl_properties.inc.php:401 +#: libraries/tbl_properties.inc.php:405 msgid "As defined:" msgstr "定義:" -#: libraries/tbl_properties.inc.php:603 +#: libraries/tbl_properties.inc.php:607 msgid "first" msgstr "" -#: libraries/tbl_properties.inc.php:613 +#: libraries/tbl_properties.inc.php:617 #, fuzzy, php-format #| msgid "After %s" msgid "after %s" msgstr "於 %s 之後" -#: libraries/tbl_properties.inc.php:871 +#: libraries/tbl_properties.inc.php:875 msgid "PARTITION definition" msgstr "分區定義" @@ -9940,7 +9952,7 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況" -#: navigation.php:136 server_databases.php:317 server_synchronize.php:1468 +#: navigation.php:136 server_databases.php:345 server_synchronize.php:1468 msgid "No databases" msgstr "無資料庫" @@ -10221,29 +10233,29 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:108 server_status.php:634 +#: server_binlog.php:108 server_status.php:633 msgid "Files" msgstr "檔案" -#: server_binlog.php:157 server_binlog.php:159 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1392 +#: server_status.php:1394 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:165 server_binlog.php:167 server_status.php:1393 -#: server_status.php:1395 +#: server_binlog.php:166 server_binlog.php:168 server_status.php:1392 +#: server_status.php:1394 msgid "Show Full Queries" msgstr "顯示完整查詢" -#: server_binlog.php:187 +#: server_binlog.php:188 msgid "Log name" msgstr "日志檔案名稱" -#: server_binlog.php:188 +#: server_binlog.php:189 msgid "Position" msgstr "位置" -#: server_binlog.php:191 +#: server_binlog.php:192 msgid "Original position" msgstr "原始位置" @@ -10251,31 +10263,31 @@ msgstr "原始位置" msgid "Character Sets and Collations" msgstr "字集和排序規則" -#: server_databases.php:116 +#: server_databases.php:118 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "已成功刪除 %s 個資料庫" -#: server_databases.php:133 +#: server_databases.php:139 msgid "Databases statistics" msgstr "資料庫統計" -#: server_databases.php:219 server_replication.php:209 -#: server_replication.php:239 +#: server_databases.php:225 server_replication.php:235 +#: server_replication.php:266 msgid "Master replication" msgstr "主複製" -#: server_databases.php:221 server_replication.php:277 +#: server_databases.php:227 server_replication.php:304 msgid "Slave replication" msgstr "從複製" -#: server_databases.php:308 server_databases.php:309 +#: server_databases.php:334 server_databases.php:335 msgid "Enable Statistics" msgstr "啓用統計" -#: server_databases.php:311 +#: server_databases.php:338 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10346,39 +10358,39 @@ msgstr "已成功重新載入權限" msgid "Unknown error" msgstr "未知錯誤" -#: server_replication.php:89 +#: server_replication.php:92 #, php-format msgid "Unable to connect to master %s." msgstr "無法連線到主伺服器 %s" -#: server_replication.php:96 +#: server_replication.php:101 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "無法讀取主伺服器日誌。主伺服器的權限設定可能有問題" -#: server_replication.php:102 +#: server_replication.php:107 msgid "Unable to change master" msgstr "無法修改主伺服器" -#: server_replication.php:105 +#: server_replication.php:111 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "權限已成功重新讀取." -#: server_replication.php:210 +#: server_replication.php:236 msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:212 server_status.php:655 +#: server_replication.php:238 server_status.php:654 msgid "Show master status" msgstr "查看主伺服器狀態" -#: server_replication.php:216 +#: server_replication.php:242 msgid "Show connected slaves" msgstr "查看已連線的從伺服器" -#: server_replication.php:240 +#: server_replication.php:267 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10387,11 +10399,11 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的主伺服器。您想現在設定" "嗎?" -#: server_replication.php:247 +#: server_replication.php:274 msgid "Master configuration" msgstr "主伺服器設定" -#: server_replication.php:248 +#: server_replication.php:275 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10402,25 +10414,25 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的主伺服器。您可以選擇複製所有但忽略某些資料" "庫 (當您想複製大多數資料庫時很有用) 或者僅複製某些資料庫。請選擇模式:" -#: server_replication.php:251 +#: server_replication.php:278 msgid "Replicate all databases; Ignore:" msgstr "複製所有資料庫,除了:" -#: server_replication.php:252 +#: server_replication.php:279 msgid "Ignore all databases; Replicate:" msgstr "忽略所有資料庫;備援(Replicate):" -#: server_replication.php:255 +#: server_replication.php:282 msgid "Please select databases:" msgstr "請選擇資料庫:" -#: server_replication.php:258 +#: server_replication.php:285 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:260 +#: server_replication.php:287 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 " @@ -10429,80 +10441,80 @@ msgstr "" "當 MySQL 伺服器重新啓動後,請點選 執行 按鈕。您應該看見一條提示資訊說此伺服器" "已經被設定爲主伺服器" -#: server_replication.php:322 +#: server_replication.php:349 msgid "Slave SQL Thread not running!" msgstr "從 SQL 程序未啓動!" -#: server_replication.php:325 +#: server_replication.php:352 msgid "Slave IO Thread not running!" msgstr "從 IO 程序未啓動!" -#: server_replication.php:334 +#: server_replication.php:361 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "伺服器已被設定爲一個複製程序中的從伺服器。您是否要:" -#: server_replication.php:337 +#: server_replication.php:364 msgid "See slave status table" msgstr "查看從伺服器狀態" -#: server_replication.php:341 +#: server_replication.php:368 msgid "Synchronize databases with master" msgstr "根據主伺服器同步資料庫" -#: server_replication.php:352 +#: server_replication.php:379 msgid "Control slave:" msgstr "控制 slave 伺服器:" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full start" msgstr "全部啓動" -#: server_replication.php:355 +#: server_replication.php:382 msgid "Full stop" msgstr "全部停止" -#: server_replication.php:356 +#: server_replication.php:383 msgid "Reset slave" msgstr "重置從伺服器" -#: server_replication.php:358 +#: server_replication.php:385 msgid "Start SQL Thread only" msgstr "僅啓動 SQL 程序" -#: server_replication.php:360 +#: server_replication.php:387 msgid "Stop SQL Thread only" msgstr "僅停止 SQL 程序" -#: server_replication.php:363 +#: server_replication.php:390 msgid "Start IO Thread only" msgstr "僅啓動 IO 程序" -#: server_replication.php:365 +#: server_replication.php:392 msgid "Stop IO Thread only" msgstr "僅停止 IO 程序" -#: server_replication.php:370 +#: server_replication.php:397 msgid "Error management:" msgstr "錯誤管理:" -#: server_replication.php:372 +#: server_replication.php:399 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略錯誤可能導致主從伺服器間不同步!" -#: server_replication.php:374 +#: server_replication.php:401 msgid "Skip current error" msgstr "忽略目前錯誤" -#: server_replication.php:375 +#: server_replication.php:402 msgid "Skip next" msgstr "忽略下" -#: server_replication.php:378 +#: server_replication.php:405 msgid "errors." msgstr "個錯誤" -#: server_replication.php:394 +#: server_replication.php:421 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10511,168 +10523,168 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:488 +#: server_status.php:487 #, php-format msgid "Thread %s was successfully killed." msgstr "已中止程序 %s" -#: server_status.php:490 +#: server_status.php:489 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" -#: server_status.php:622 +#: server_status.php:621 msgid "Handler" msgstr "處理器" -#: server_status.php:623 +#: server_status.php:622 msgid "Query cache" msgstr "查詢快取" -#: server_status.php:624 +#: server_status.php:623 msgid "Threads" msgstr "程序" -#: server_status.php:626 +#: server_status.php:625 msgid "Temporary data" msgstr "臨時資料" -#: server_status.php:627 +#: server_status.php:626 msgid "Delayed inserts" msgstr "延遲插入" -#: server_status.php:628 +#: server_status.php:627 msgid "Key cache" msgstr "鍵快取" -#: server_status.php:629 +#: server_status.php:628 msgid "Joins" msgstr "多表查詢" -#: server_status.php:631 +#: server_status.php:630 msgid "Sorting" msgstr "排序" -#: server_status.php:633 +#: server_status.php:632 msgid "Transaction coordinator" msgstr "交易協調" -#: server_status.php:645 +#: server_status.php:644 msgid "Flush (close) all tables" msgstr "強制更新 (關閉) 所有表" -#: server_status.php:647 +#: server_status.php:646 msgid "Show open tables" msgstr "顯示開啟的表" -#: server_status.php:652 +#: server_status.php:651 msgid "Show slave hosts" msgstr "顯示從伺服器" -#: server_status.php:658 +#: server_status.php:657 msgid "Show slave status" msgstr "顯示從伺服器狀態" -#: server_status.php:663 +#: server_status.php:662 msgid "Flush query cache" msgstr "強制更新查詢快取" -#: server_status.php:803 +#: server_status.php:802 msgid "Runtime Information" msgstr "運行資訊" -#: server_status.php:810 +#: server_status.php:809 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "查看從伺服器狀態" -#: server_status.php:811 +#: server_status.php:810 msgid "Monitor" msgstr "" -#: server_status.php:812 +#: server_status.php:811 msgid "Advisor" msgstr "" -#: server_status.php:822 server_status.php:848 +#: server_status.php:821 server_status.php:847 #, fuzzy #| msgid "Number of rows:" msgid "Number of data points: " msgstr "記錄數:" -#: server_status.php:826 server_status.php:852 +#: server_status.php:825 server_status.php:851 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "重新整理" -#: server_status.php:865 server_variables.php:116 +#: server_status.php:864 server_variables.php:117 #, fuzzy msgid "Filters" msgstr "過濾" -#: server_status.php:873 server_variables.php:118 +#: server_status.php:872 server_variables.php:119 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密碼" -#: server_status.php:878 +#: server_status.php:877 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "顯示開啟的表" -#: server_status.php:882 +#: server_status.php:881 msgid "Filter by category..." msgstr "" -#: server_status.php:895 +#: server_status.php:894 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "顯示開啟的表" -#: server_status.php:899 +#: server_status.php:898 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相關連結" -#: server_status.php:934 +#: server_status.php:933 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "查詢方式" -#: server_status.php:935 +#: server_status.php:934 #, fuzzy msgid "Instructions" msgstr "資料" -#: server_status.php:942 +#: server_status.php:941 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:944 +#: server_status.php:943 msgid "" "Do note however that this system provides recommendations based on simple " "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -#: server_status.php:946 +#: server_status.php:945 msgid "" "Prior to changing any of the configuration, be sure to know what you are " "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" -#: server_status.php:948 +#: server_status.php:947 msgid "" "The best way to tune your system would be to change only one setting at a " "time, observe or benchmark your database, and undo the change if there was " @@ -10680,47 +10692,47 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:971 +#: server_status.php:970 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "自訂起始頁" -#: server_status.php:1007 +#: server_status.php:1006 msgid "Statements" msgstr "說明" #. l10n: # = Amount of queries -#: server_status.php:1010 +#: server_status.php:1009 msgid "#" msgstr "" -#: server_status.php:1084 +#: server_status.php:1083 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1100 +#: server_status.php:1099 #, fuzzy, php-format #| msgid "This MySQL server has been running for %s. It started up on %s." msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" -#: server_status.php:1111 +#: server_status.php:1110 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1113 +#: server_status.php:1112 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1115 +#: server_status.php:1114 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1118 +#: server_status.php:1117 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10728,11 +10740,11 @@ msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" "" -#: server_status.php:1127 +#: server_status.php:1126 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:1142 +#: server_status.php:1141 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10740,47 +10752,47 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:1148 +#: server_status.php:1147 msgid "Received" msgstr "已接收" -#: server_status.php:1165 +#: server_status.php:1164 msgid "Sent" msgstr "已發送" -#: server_status.php:1212 +#: server_status.php:1211 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:1219 +#: server_status.php:1218 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:1235 +#: server_status.php:1234 msgid "Aborted" msgstr "已取消" -#: server_status.php:1279 +#: server_status.php:1278 msgid "ID" msgstr "ID" -#: server_status.php:1295 +#: server_status.php:1294 msgid "Command" msgstr "命令" -#: server_status.php:1466 +#: server_status.php:1465 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1467 +#: server_status.php:1466 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "無法連線到 MySQL 伺服器" -#: server_status.php:1468 +#: server_status.php:1467 msgid "" "The number of transactions that used the temporary binary log cache but that " "exceeded the value of binlog_cache_size and used a temporary file to store " @@ -10789,16 +10801,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:1469 +#: server_status.php:1468 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:1470 +#: server_status.php:1469 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1471 +#: server_status.php:1470 msgid "" "The number of temporary tables on disk created automatically by the server " "while executing statements. If Created_tmp_disk_tables is big, you may want " @@ -10808,46 +10820,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:1472 +#: server_status.php:1471 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:1473 +#: server_status.php:1472 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:1474 +#: server_status.php:1473 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)" -#: server_status.php:1475 +#: server_status.php:1474 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" -#: server_status.php:1476 +#: server_status.php:1475 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:1477 +#: server_status.php:1476 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:1478 +#: server_status.php:1477 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:1479 +#: server_status.php:1478 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:1480 +#: server_status.php:1479 msgid "" "The MySQL server can ask the NDB Cluster storage engine if it knows about a " "table with a given name. This is called discovery. Handler_discover " @@ -10856,7 +10868,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:1481 +#: server_status.php:1480 msgid "" "The number of times the first entry was read from an index. If this is high, " "it suggests that the server is doing a lot of full index scans; for example, " @@ -10865,14 +10877,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo" -#: server_status.php:1482 +#: server_status.php:1481 msgid "" "The number of requests to read a row based on a key. If this is high, it is " "a good indication that your queries and tables are properly indexed." msgstr "" "根據索引讀取行的請求數。如果該值很大,說明您的查詢和表都建立了很好的索引" -#: server_status.php:1483 +#: server_status.php:1482 msgid "" "The number of requests to read the next row in key order. This is " "incremented if you are querying an index column with a range constraint or " @@ -10881,7 +10893,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:1484 +#: server_status.php:1483 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10889,7 +10901,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:1485 +#: server_status.php:1484 msgid "" "The number of requests to read a row based on a fixed position. This is high " "if you are doing a lot of queries that require sorting of the result. You " @@ -10899,7 +10911,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:1486 +#: server_status.php:1485 msgid "" "The number of requests to read the next row in the data file. This is high " "if you are doing a lot of table scans. Generally this suggests that your " @@ -10909,35 +10921,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:1487 +#: server_status.php:1486 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:1488 +#: server_status.php:1487 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:1489 +#: server_status.php:1488 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:1490 +#: server_status.php:1489 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁)" -#: server_status.php:1491 +#: server_status.php:1490 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:1492 +#: server_status.php:1491 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:1493 +#: server_status.php:1492 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:1494 +#: server_status.php:1493 msgid "" "The number of latched pages in InnoDB buffer pool. These are pages currently " "being read or written or that can't be flushed or removed for some other " @@ -10946,7 +10958,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:1495 +#: server_status.php:1494 msgid "" "The number of pages busy because they have been allocated for administrative " "overhead such as row locks or the adaptive hash index. This value can also " @@ -10957,11 +10969,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data" -#: server_status.php:1496 +#: server_status.php:1495 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:1497 +#: server_status.php:1496 msgid "" "The number of \"random\" read-aheads InnoDB initiated. This happens when a " "query is to scan a large portion of a table but in random order." @@ -10969,23 +10981,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:1498 +#: server_status.php:1497 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" -#: server_status.php:1499 +#: server_status.php:1498 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:1500 +#: server_status.php:1499 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:1501 +#: server_status.php:1500 msgid "" "Normally, writes to the InnoDB buffer pool happen in the background. " "However, if it's necessary to read or create a page and no clean pages are " @@ -10997,85 +11009,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:1502 +#: server_status.php:1501 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:1503 +#: server_status.php:1502 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:1504 +#: server_status.php:1503 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:1505 +#: server_status.php:1504 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:1506 +#: server_status.php:1505 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:1507 +#: server_status.php:1506 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:1508 +#: server_status.php:1507 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:1509 +#: server_status.php:1508 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:1510 +#: server_status.php:1509 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:1511 +#: server_status.php:1510 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:1512 +#: server_status.php:1511 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:1513 +#: server_status.php:1512 msgid "" "The number of waits we had because log buffer was too small and we had to " "wait for it to be flushed before continuing." msgstr "因日誌快取太小而必須等待其被寫入所造成的等待數" -#: server_status.php:1514 +#: server_status.php:1513 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:1515 +#: server_status.php:1514 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:1516 +#: server_status.php:1515 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:1517 +#: server_status.php:1516 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:1518 +#: server_status.php:1517 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:1519 +#: server_status.php:1518 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:1520 +#: server_status.php:1519 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:1521 +#: server_status.php:1520 msgid "" "The compiled-in InnoDB page size (default 16KB). Many values are counted in " "pages; the page size allows them to be easily converted to bytes." @@ -11083,81 +11095,81 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:1522 +#: server_status.php:1521 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:1523 +#: server_status.php:1522 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:1524 +#: server_status.php:1523 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:1525 +#: server_status.php:1524 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:1526 +#: server_status.php:1525 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:1527 +#: server_status.php:1526 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:1528 +#: server_status.php:1527 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:1529 +#: server_status.php:1528 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:1530 +#: server_status.php:1529 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:1531 +#: server_status.php:1530 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:1532 +#: server_status.php:1531 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:1533 +#: server_status.php:1532 msgid "" "The number of key blocks in the key cache that have changed but haven't yet " "been flushed to disk. It used to be known as Not_flushed_key_blocks." msgstr "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks" -#: server_status.php:1534 +#: server_status.php:1533 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:1535 +#: server_status.php:1534 msgid "" "The number of used blocks in the key cache. This value is a high-water mark " "that indicates the maximum number of blocks that have ever been in use at " "one time." msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" -#: server_status.php:1536 +#: server_status.php:1535 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "匯入檔案的格式" -#: server_status.php:1537 +#: server_status.php:1536 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:1538 +#: server_status.php:1537 msgid "" "The number of physical reads of a key block from disk. If Key_reads is big, " "then your key_buffer_size value is probably too small. The cache miss rate " @@ -11166,26 +11178,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:1539 +#: server_status.php:1538 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1540 +#: server_status.php:1539 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:1541 +#: server_status.php:1540 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:1542 +#: server_status.php:1541 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1543 +#: server_status.php:1542 msgid "" "The total cost of the last compiled query as computed by the query " "optimizer. Useful for comparing the cost of different query plans for the " @@ -11194,54 +11206,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:1544 +#: server_status.php:1543 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1545 +#: server_status.php:1544 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:1546 +#: server_status.php:1545 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" -#: server_status.php:1547 +#: server_status.php:1546 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:1548 +#: server_status.php:1547 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:1549 +#: server_status.php:1548 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:1550 +#: server_status.php:1549 msgid "" "The number of free memory blocks in query cache. High numbers can indicate " "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." msgstr "" -#: server_status.php:1551 +#: server_status.php:1550 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:1552 +#: server_status.php:1551 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:1553 +#: server_status.php:1552 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:1554 +#: server_status.php:1553 msgid "" "The number of queries that have been removed from the cache to free up " "memory for caching new queries. This information can help you tune the query " @@ -11251,7 +11263,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:1555 +#: server_status.php:1554 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11259,19 +11271,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:1556 +#: server_status.php:1555 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:1557 +#: server_status.php:1556 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:1558 +#: server_status.php:1557 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:1559 +#: server_status.php:1558 msgid "" "The number of joins that do not use indexes. If this value is not 0, you " "should carefully check the indexes of your tables." @@ -11279,11 +11291,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:1560 +#: server_status.php:1559 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:1561 +#: server_status.php:1560 msgid "" "The number of joins without keys that check for key usage after each row. " "(If this is not 0, you should carefully check the indexes of your tables.)" @@ -11291,7 +11303,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:1562 +#: server_status.php:1561 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11299,36 +11311,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:1563 +#: server_status.php:1562 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:1564 +#: server_status.php:1563 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:1565 +#: server_status.php:1564 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:1566 +#: server_status.php:1565 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:1567 +#: server_status.php:1566 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:1568 +#: server_status.php:1567 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:1569 +#: server_status.php:1568 msgid "" "The number of merge passes the sort algorithm has had to do. If this value " "is large, you should consider increasing the value of the sort_buffer_size " @@ -11337,23 +11349,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:1570 +#: server_status.php:1569 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:1571 +#: server_status.php:1570 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:1572 +#: server_status.php:1571 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:1573 +#: server_status.php:1572 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:1574 +#: server_status.php:1573 msgid "" "The number of times that a table lock could not be acquired immediately and " "a wait was needed. If this is high, and you have performance problems, you " @@ -11363,7 +11375,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:1575 +#: server_status.php:1574 msgid "" "The number of threads in the thread cache. The cache hit rate can be " "calculated as Threads_created/Connections. If this value is red you should " @@ -11372,11 +11384,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:1576 +#: server_status.php:1575 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:1577 +#: server_status.php:1576 msgid "" "The number of threads created to handle connections. If Threads_created is " "big, you may want to increase the thread_cache_size value. (Normally this " @@ -11386,75 +11398,75 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:1578 +#: server_status.php:1577 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "追蹤已停用" -#: server_status.php:1579 +#: server_status.php:1578 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:1734 +#: server_status.php:1733 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "文字框行" -#: server_status.php:1745 +#: server_status.php:1744 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1759 server_status.php:1832 +#: server_status.php:1758 server_status.php:1831 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "新增索引" -#: server_status.php:1761 +#: server_status.php:1760 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1765 +#: server_status.php:1764 #, fuzzy msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:1770 +#: server_status.php:1769 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "文本框列" -#: server_status.php:1786 +#: server_status.php:1785 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "錯誤管理:" -#: server_status.php:1786 +#: server_status.php:1785 msgid "" "The arrangement of the charts is stored to the browsers local storage. You " "may want to export it if you have a complicated set up." msgstr "" -#: server_status.php:1787 +#: server_status.php:1786 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" -#: server_status.php:1791 +#: server_status.php:1790 #, fuzzy msgid "Monitor Instructions" msgstr "資料" -#: server_status.php:1792 +#: server_status.php:1791 msgid "" "The phpMyAdmin Monitor can assist you in optimizing the server configuration " "and track down time intensive queries. For the latter you will need to set " @@ -11463,7 +11475,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1797 +#: server_status.php:1796 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11471,18 +11483,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1810 +#: server_status.php:1809 msgid "Using the monitor:" msgstr "" -#: server_status.php:1812 +#: server_status.php:1811 msgid "" "Your browser will refresh all displayed charts in a regular interval. You " "may add charts and change the refresh rate under 'Settings', or remove any " "chart using the cog icon on each respective chart." msgstr "" -#: server_status.php:1814 +#: server_status.php:1813 msgid "" "To display queries from the logs, select the relevant time span on any chart " "by holding down the left mouse button and panning over the chart. Once " @@ -11490,11 +11502,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1821 +#: server_status.php:1820 msgid "Please note:" msgstr "" -#: server_status.php:1823 +#: server_status.php:1822 msgid "" "Enabling the general_log may increase the server load by 5-15%. Also be " "aware that generating statistics from the logs is a load intensive task, so " @@ -11502,104 +11514,104 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1837 +#: server_status.php:1836 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "刪除資料庫" -#: server_status.php:1841 +#: server_status.php:1840 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "查看從伺服器狀態" -#: server_status.php:1843 +#: server_status.php:1842 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "選擇表" -#: server_status.php:1845 +#: server_status.php:1844 msgid "Commonly monitored" msgstr "" -#: server_status.php:1860 +#: server_status.php:1859 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "無效的資料資料表名稱" -#: server_status.php:1864 +#: server_status.php:1863 msgid "Display as differential value" msgstr "" -#: server_status.php:1866 +#: server_status.php:1865 msgid "Apply a divisor" msgstr "" -#: server_status.php:1873 +#: server_status.php:1872 msgid "Append unit to data values" msgstr "" -#: server_status.php:1879 +#: server_status.php:1878 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "新增伺服器" -#: server_status.php:1881 +#: server_status.php:1880 msgid "Clear series" msgstr "" -#: server_status.php:1884 +#: server_status.php:1883 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL 查詢" -#: server_status.php:1899 +#: server_status.php:1898 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "顯示統計" -#: server_status.php:1900 +#: server_status.php:1899 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "選擇頁" -#: server_status.php:1905 +#: server_status.php:1904 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1910 +#: server_status.php:1909 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1915 +#: server_status.php:1914 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1917 +#: server_status.php:1916 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1922 +#: server_status.php:1921 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "查詢方式" -#: server_status.php:1972 server_status.php:1990 +#: server_status.php:1971 server_status.php:1989 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "秒" -#: server_status.php:1975 +#: server_status.php:1974 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11716,19 +11728,19 @@ msgid "" "database will remain unchanged." msgstr "目標資料庫將完全根據來源資料庫同步。來源資料庫將保持不變" -#: server_variables.php:87 +#: server_variables.php:88 msgid "Setting variable failed" msgstr "" -#: server_variables.php:100 +#: server_variables.php:101 msgid "Server variables and settings" msgstr "伺服器變數和設定" -#: server_variables.php:127 server_variables.php:154 +#: server_variables.php:128 server_variables.php:155 msgid "Session value" msgstr "連線值" -#: server_variables.php:127 +#: server_variables.php:128 msgid "Global value" msgstr "全域值" @@ -12040,42 +12052,42 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" msgid "Wrong data" msgstr "沒有資料庫" -#: sql.php:275 +#: sql.php:295 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢" -#: sql.php:830 +#: sql.php:866 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:835 +#: sql.php:871 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:994 +#: sql.php:1034 msgid "SQL result" msgstr "SQL 查詢結果" -#: sql.php:999 +#: sql.php:1039 msgid "Generated by" msgstr "產生者" -#: sql.php:1147 +#: sql.php:1193 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:1179 +#: sql.php:1225 msgid "Label" msgstr "標籤" -#: tbl_addfield.php:190 tbl_alter.php:216 tbl_indexes.php:109 +#: tbl_addfield.php:190 tbl_alter.php:206 tbl_indexes.php:109 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: tbl_alter.php:133 +#: tbl_alter.php:123 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." @@ -12244,16 +12256,16 @@ msgstr "編輯模式" msgid "Index name:" msgstr "索引名稱:" -#: tbl_indexes.php:211 +#: tbl_indexes.php:214 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" -#: tbl_indexes.php:223 +#: tbl_indexes.php:231 msgid "Index type:" msgstr "索引類型:" -#: tbl_indexes.php:318 +#: tbl_indexes.php:324 #, php-format msgid "Add to index  %s column(s)" msgstr "新增 %s 個索引欄位" @@ -12428,41 +12440,41 @@ msgstr "匯出爲 %s" msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:772 +#: tbl_tracking.php:776 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "停用 %s.%s 的追蹤" -#: tbl_tracking.php:774 +#: tbl_tracking.php:778 msgid "Deactivate now" msgstr "立即停用" -#: tbl_tracking.php:785 +#: tbl_tracking.php:789 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "啓用 %s.%s 的追蹤" -#: tbl_tracking.php:787 +#: tbl_tracking.php:791 msgid "Activate now" msgstr "立即啓用" -#: tbl_tracking.php:800 +#: tbl_tracking.php:804 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "爲 %2$s.%3$s 建立版本 %1$s" -#: tbl_tracking.php:804 +#: tbl_tracking.php:808 msgid "Track these data definition statements:" msgstr "追蹤下列資料定義指令:" -#: tbl_tracking.php:812 +#: tbl_tracking.php:816 msgid "Track these data manipulation statements:" msgstr "追蹤下列資料操作指令:" -#: tbl_tracking.php:820 +#: tbl_tracking.php:824 msgid "Create version" msgstr "建立版本" @@ -12834,8 +12846,8 @@ msgstr "" #: libraries/advisory_rules.txt:172 #, php-format msgid "" -"The current ratio of free query cache memory to total query cache size is %s" -"%%. It should be above 80%%" +"The current ratio of free query cache memory to total query cache size is %s%" +"%. It should be above 80%%" msgstr "" #: libraries/advisory_rules.txt:174 @@ -12970,8 +12982,8 @@ msgstr "" #: libraries/advisory_rules.txt:209 #, php-format msgid "" -"%s%% of all sorts cause temporary tables, this value should be lower than " -"10%%." +"%s%% of all sorts cause temporary tables, this value should be lower than 10%" +"%." msgstr "" #: libraries/advisory_rules.txt:211 @@ -14218,8 +14230,8 @@ msgstr "concurrent_insert設置為0" #~ "Note that not every result table can be put to the chart. See FAQ 6.29" #~ msgstr "" -#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" +#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29" #~ msgid "Add a New User" #~ msgstr "新增新使用者"